- Home
- Categorie
- Coding e Sistemistica
- PHP
- Problema query
-
Problema query
Ciao a tutti.
Non so come mai ma questa query non va perchè mi restituisce questo errore:Errore nella query: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 '* favorite WHERE id_articolo = '1250' AND user = 'amministratore'' at line 1
Ecco la query:
$favorite=mysql_query("delete * table WHERE id_articolo = '$id' AND user = '$user'") or die("Errore nella query:" . mysql_error());
Tutti i valori sono passati con GET, ma da lo stesso errore con POST.
Qualcuno che riesce a risolvere questo arcano?
Grazie
-
Potete chiudere, ho avuto un problema di query. Per chi ne avesse bisogno:
$favorite=mysql_query("delete FROM table WHERE id_articolo = '$id' AND user = '$user'") or die("Errore nella query:" . mysql_error());
Grazie