Hallo, nun bin ich nach 2 Tagen rastloser Suche nach
PHP Experten nun hoffentlich am Ende meiner Qualvollen
Webreise... Ich hab ein Problem beim INSERT in eine MySQL
DB , da erscheinen aus meinem html Formular nur leere Datensätze !! wenn überhaupt.. schaut Euch bitte bitte ma mein skript an :
1. form.html
<html>
<head><title>formular</title></head>
<BODY BGCOLOR="#FFFFFF" style="font-family: verdana, helvetica, arial" topmargin="0" leftmargin="0" vlink="#0000FF" alink="#0000FF" link="#0000FF">
<form method="get" action="sonar.php">
<table border="0" align="center">
<tr>
<td>Vorname</td>
<td><input type="text" name="$vorname" size="50"></td>
</tr><tr>
<td>Name</td>
<td><input type="text" name="$name" size="50"></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="submit" value="Abschicken"></td>
</tr>
</table>
</form>
</body>
</html>
2. sonar.php
<html>
<BODY BGCOLOR="#FFFFFF" style="font-family: verdana, helvetica, arial" topmargin="0" leftmargin="0" vlink="#0000FF" alink="#0000FF" link="#0000FF">
<?php
$db = mysql_connect("127.0.0.1", "root");
mysql_select_db("kundendb",$db);
$sql = "INSERT INTO kunden (vorname,name) VALUES ('$vorname','$name')";
$result = mysql_query($sql,$db);
echo "Ihr Daten wurden abgeschickt! Vielen Dank!<br><br>";
?>
</body>
</html>
PS.: Bitte Bitte helft mir , das ist meine letzte Hoffnung, ich muss ne komplette HP in 2 Tagen fertigen
PHP Experten nun hoffentlich am Ende meiner Qualvollen
Webreise... Ich hab ein Problem beim INSERT in eine MySQL
DB , da erscheinen aus meinem html Formular nur leere Datensätze !! wenn überhaupt.. schaut Euch bitte bitte ma mein skript an :
1. form.html
<html>
<head><title>formular</title></head>
<BODY BGCOLOR="#FFFFFF" style="font-family: verdana, helvetica, arial" topmargin="0" leftmargin="0" vlink="#0000FF" alink="#0000FF" link="#0000FF">
<form method="get" action="sonar.php">
<table border="0" align="center">
<tr>
<td>Vorname</td>
<td><input type="text" name="$vorname" size="50"></td>
</tr><tr>
<td>Name</td>
<td><input type="text" name="$name" size="50"></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="submit" value="Abschicken"></td>
</tr>
</table>
</form>
</body>
</html>
2. sonar.php
<html>
<BODY BGCOLOR="#FFFFFF" style="font-family: verdana, helvetica, arial" topmargin="0" leftmargin="0" vlink="#0000FF" alink="#0000FF" link="#0000FF">
<?php
$db = mysql_connect("127.0.0.1", "root");
mysql_select_db("kundendb",$db);
$sql = "INSERT INTO kunden (vorname,name) VALUES ('$vorname','$name')";
$result = mysql_query($sql,$db);
echo "Ihr Daten wurden abgeschickt! Vielen Dank!<br><br>";
?>
</body>
</html>
PS.: Bitte Bitte helft mir , das ist meine letzte Hoffnung, ich muss ne komplette HP in 2 Tagen fertigen
Kommentar