Hi,
möchte gerne ein weiteres Feld einbauen
das Feld müsste dann so heissen: $HTTP_POST_VARS[pcname] und hinzugefügt werden.
Wenn ich dies tue
erhalte ich eine Fehlermeldung (You have an error in your SQL syntax). Habe nun herausgefunden, das ich am Ende noch die Werte einfügen muss, weis aber leider nicht wie....
Für was steht eigentlich NULL, default?
Ciao
möchte gerne ein weiteres Feld einbauen
PHP-Code:
$sql = "INSERT into $mysql_users_table values(NULL, '$HTTP_POST_VARS[first]', '$HTTP_POST_VARS[last]', '$HTTP_POST_VARS[user]', '$HTTP_POST_VARS[email]', NULL, '$password', '$HTTP_POST_VARS[office]', '$HTTP_POST_VARS[phone]', 0, 0, 0,'default', NULL, NULL, NULL, 0, '$default_language', 0)";
Wenn ich dies tue
PHP-Code:
$sql = "INSERT into $mysql_users_table values(NULL, '$HTTP_POST_VARS[first]', '$HTTP_POST_VARS[last]', '$HTTP_POST_VARS[user]', '$HTTP_POST_VARS[email]', NULL, '$password', '$HTTP_POST_VARS[office]', '$HTTP_POST_VARS[phone]', '$HTTP_POST_VARS[pcname]' 0, 0, 0,'default', NULL, NULL, NULL, 0, '$default_language', 0)";
Für was steht eigentlich NULL, default?
Ciao
Kommentar