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
Programming x 1
Web Development x 1
2 Posted Topics
Re: 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 | |
Re: 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']); … |
The End.