Ben aşağıdaki kodu çalıştırdığınızda zaman $ entry = miami.com, ben aşağıdaki hata iletisini alabilirsiniz:
SELECT COUNT(*) FROM #&*+ WHERE `site` LIKE 'miami.com':You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
Ben doğru $ tablo tanımlama yapmıyorum gibi görünüyor. Ben bunu nasıl Herhangi bir fikir?
Teşekkür peşin,
John
$result = mysql_query("SHOW TABLES FROM feather")
or die(mysql_error());
while(list($table)= mysql_fetch_row($result))
{
$sqlA = "SELECT COUNT(*) FROM $table WHERE `site` LIKE '$entry'";
$resA = mysql_query($sqlA) or die("$sqlA:".mysql_error());
list($isThere) = mysql_fetch_row($resA);
if ($isThere)
{
$table_list[] = $table;
}
}