can anyone please guide me on How to insert a DATETIME filed from iphone through PHP script into MySQL database.
$dates = date('Y-m-d H:i:s','2010-10-12 15:09:00');
$query = "INSERT INTO timeTable(time) VALUES ('$dates')";
Thank you..
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For
date()function as a second argument you should pass a timestamp.But you have already your time in a good form sou you should just do: