questo script mi da questo errore perche???
HO SCRITTO UN MEX di prova
ed ecco l'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 ') VALUES('5k1zz0','zomer','prova','prova')' at line 1
ed ecco lo script
Codice PHP:
<?
include_once"config1.php";
if(isset($_POST['inviamp'])){
$iduser = $_POST['iduser'];
$reid = $_POST['reid'];
$titolo = $_POST['titolo'];
$testo = $_POST['testo'];
if($reid == NULL OR $titolo == NULL OR $testo == NULL){
$final_report.= "Compilare tutti i campi..";
}else{
if(strlen($testo) <= 1 || strlen($testo) >= 500){
$final_report.="il testo puo avere da un carettere fino a 500";
}else{
$create_member = mysql_query("INSERT INTO `mesprivate` (`iduser`, `reid`, `titolo`, `testo`,)
VALUES('$iduser','$reid','$titolo','$testo')");
$final_report.="Messaggio inviato Corettmente a $reid";
}}}
if (!$create_member)
{
// la query non è stata eseguita: perché...?
echo mysql_error();
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Zomer-Mp</title>
</head>
<body><form method="post">
<table width="450" border="1" align="center">
<? echo '<tr><td colspan="2">'.$final_report.'</td></tr>';?>
<tr>
<td width="20%">A:</td>
<td width="50%"><label>
<input name="reid" type="text" id="reid" size="30" />
</label></td>
</tr>
<tr>
<td width="20%">Da:</td>
<td width="50%"><label>
<input name="iduser" type="text" id="iduser" size="30" />
</label></td>
</tr>
<tr>
<td>Titolo:</td>
<td><input name="titolo" type="text" id="titolo" size="30" /></td>
</tr>
</td>
<tr>
<td width="100%">Testo:</td>
<td><textarea name="testo" type="text" id="testo" style="height:80px; width:210px;" size="30" /></textarea>
</td>
</tr>
<tr>
<td> </td>
<td><label>
<input name="inviamp" type="submit" id="inviamp" value="invia Mp" />
</label></td>
</tr>
</table>
</form>
</body>
</html>