Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.8K
~3K People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for dongtrien

Hi Check this regerence link, this will help you out... https://technet.microsoft.com/en-us/library/ms143694(v=sql.110).aspx Thanks & Regards Amelia

Member Avatar for Amelia_4
0
233
Member Avatar for James_90

The exact syntax depends on how you're interacting with your database (MySQLi, PDO, etc.). You basically need to take the POSTed form values, do some straightforward validation to make sure that the user hasn't entered anything dangerous, then insert the values into the query: $from = mysqli_real_escape_string($_POST['fromdate']); $to = mysqli_real_escape_string($_POST['todate']); …

Member Avatar for Amelia_4
0
2K

The End.