was gibt dir denn die zeile für ne fehlermeldung: mysql_query($insert,$db) or mysql_error();
Hilfe kann keine Tabelle erstellen
Einklappen
X
-
das ID-feld muss das autoincrement haben, nicht der namen.INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |
Kommentar
-
PHP-Code:$sql="CREATE TABLE ".$tabellenname." (
id int(11) NOT NULL auto_increment,
name text NOT NULL default '',
mail varchar(50) NOT NULL default '',
eintrag text NOT NULL default '',
PRIMARY KEY (id)
)";
INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |
Kommentar
-
nein. das schreibt er automatisch.INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |
Kommentar
-
schon richtig, aber man MUSS NICHT unbedingt die id als feld angeben.
kann sein, dass die ` schlud dran sind.
teste das mal so. so mache ich das zumindest und funktioniert einwandfrei.
PHP-Code:$insert = "INSERT INTO Tabelle (name, mail, eintrag) VALUES ('".$name."', '".$email."', '".$eintrag."')";
INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |
Kommentar
-
wenn das feld vom typ DATETIME ist kannst du so das aktuelle datum reinschreiben.
Code:INSERT INTO tabelle (datumsfeld) VALUES (NOW());
Code:INSERT INTO tabelle (datumsfeld) VALUES ('2003-01-23 17:32:45');
PHP-Code:$insert = "INSERT INTO Tabelle (name, mail, eintrag, datumsfeld) VALUES ('".$name."', '".$email."', '".$eintrag."', NOW())";
EDIT:
NOW() ist eine mysql-funktion, die das aktuelle datum liefert.
6.3.4 Date and Time FunctionsINFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |
Kommentar
-
OffTopic:
mache es doch mal aussergewöhnlich .... diagonal im quadrat. davon der sinus und mal pi. sieht bestimmt lustig aus.
mal im ernst. warum nicht untereinander?INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |
Kommentar
-
logisch. man muss es ja auch noch formatieren .... take a look
aber der standard ist nunmal untereinander.INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |
Kommentar
Kommentar