- Home
- Categorie
- Coding e Sistemistica
- PHP
- Non funziona la query
-
Non funziona la query
Salve a tutti sono alle prese con una delle prime applicazione php-mysql
e non riesco a far funzionare questo script.Mi da questo errore: QUERY FALLITA!!!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 '1' at line 1
Vi posto il codice
<?php
$nome = $_POST["nome"];
$cognome = $_POST["cognome"];$chandle = mysql_connect("localhost:8889", "root", "root");
$db_selected = mysql_select_db("villapapaleo");
$sql = mysql_query("INSERT INTO contatti_newsletter(nome,cognome) VALUES('$nome', '$cognome')");
mysql_query($sql) or die("QUERY FALLITA!!!" . mysql_error());?>
-
Riscrivi
[php]
$sql = mysql_query("INSERT INTO contatti_newsletter(nome,cognome) VALUES('$nome', '$cognome')");
mysql_query($sql) or die("QUERY FALLITA!!!" . mysql_error());
[/php]In[php]
$sql = mysql_query("INSERT INTO contatti_newsletter (nome, cognome) VALUES ('$nome', '$cognome')") or die("QUERY FALLITA!!!" . mysql_error());
[/php]Non ripetere due volte mysql_query();
Ciao!