Hallo
jetzt habe ich einen SQL Syntax error und weiß nicht wo er ist, bzw. wie ich ihn finde
folgendes wird angezeigt:
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
jetzt habe ich einen SQL Syntax error und weiß nicht wo er ist, bzw. wie ich ihn finde
PHP:
<?php
require ('config.php');
$name = $_POST['name'];
$email = $_POST['email'];
$connection=mysql_connect($mysqlhost, $mysqluser, $mysqlpwd) or die("Es konnte keine Verbindung zur Datenbank hergestellt werden");
@mysql_select_db($mysqldb, $connection) or die ("Die Datenbank konnte nicht ausgewählt werden");
$sql = "INSERT INTO $mysqltable (name, email) VALUES ($name, $email)";
$result = mysql_query($sql) or die (mysql_error());
echo "Datensatz wurde erfolgreich von $name aktualisiert!<br><br>";
mysql_close ($connection);
?>
folgendes wird angezeigt:
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