Bu sorgu ile sorun yaşıyorum. (Ben gerekli sql enjeksiyon adımları attık endişelenmeyin) kutularının gelen 2 tarih var. Onlar bir MS SQL Server DATETIME alanı sorgulamak için kullanılır. Ben bu hatayı alıyorum:
Conversion failed when converting date and/or time from character string
Kodumu İşte:
//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 . "') "
Ben yanlış ne yapıyorum?
Jonesy