I have a query
$query= "SELECT DATE_ADD('".$mydate."', INTERVAL 1 HOUR)";
that gives a good result on phpMyAdmin.
But when I do in php
$result = mysql_query($query);
$result is empty, I can't undersdand why
I've done a mysql_error() but there is no error and the database link is OK,
I can do other queries previously but when I'm trying to get the date it doesn't work.
Thanks,