我在查詢時遇到了問題。我有2個來自文本框的日期(不要擔心我已經採取了必要的SQL注入步驟)。它們用於查詢MS SQL Server DATETIME字段。我得到這個錯誤:PHP:從字符串轉換日期和/或時間時轉換失敗
Conversion failed when converting date and/or time from character string
這裏我的代碼:
//formatting my strings
$from = strtotime($from);
$to = strtotime($to);
//this is the where clause in the SQL statement
"WHERE (tblBackupArchive.BackupDate BETWEEN '" . $from ."' AND '" . $to . "') "
我在做什麼錯?
Jonesy
'$ from'和'$ to'包含什麼? – 2010-10-26 11:26:51
他們是在日期格式 - dd/mm/yyyy – iamjonesy 2010-10-26 12:00:42