I used following code to insert the yesterday date into my_table of MySQL database. It worked fine in WAMP and MAMP. But it doesn't work in my host. What would be the reason Please help...
$dt = new DateTime();
$d = date_add($dt,date_interval_create_from_date_string("-1 days"));
$date = $d->format('Y-m-d');
$import="INSERT into my_table (date) Values('$date')”;
mysql_query($import) or die(mysql_error());