我想打印出一條SQL語句,但我不確定是否正確。它不僅僅是簡單地打印出SQL語句本身的結果。print_r SQL語句
<?php
$date = new DateTime();
$ts = $date->getTimestamp();
$currentDate = strtotime(date("Y-m-d", $ts));
$sql = "SELECT * FROM 'events' where 'date_start' = '$currentDate'";
print_r($sql);
?>
你應該從這裏開始:http://php.net/manual/en/book.pdo.php –
製作名爲'$ sql'的變量不會使其成爲SQL。你還需要使用反引號來表名和/或列名。請參閱http://php.net/manual/en/mysqlinfo.api.choosing.php,然後查看您選擇的驅動程序的準備好的語句。 – chris85