Se eseguo questa query:
Codice PHP:
$query_pm = mysql_query("SELECT * FROM `drkbb_pm` WHERE to = '18' ") OR die("Errore ".mysql_error());
$result_pm =mysql_query($query_pm);
$row_pm = mysql_fetch_array($result_pm);
mi da il seguente errore
Codice:
Errore 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 'to = '18'' at line 1
ma se faccio partire questa fa tutto bene:
Codice PHP:
$query_pm = mysql_query("SELECT * FROM `drkbb_pm`") OR die("Errore ".mysql_error());
$result_pm =mysql_query($query_pm);
$row_pm = mysql_fetch_array($result_pm);
Non capisco cosa possa essere.... grazie in anticipo