hi erstmal ...
so nun nach Stunden der verzweiflung :/
poste ich mal hier und bitte um Hilfe....
Man Anliegen ist ein Formular so erstellen das automatisch Bestimme einträge in der MySQL Datenbank macht.....
Also so nen Grund gerüst hab ich schonmal aber funktioniert irgendwie nicht.
ich hoffe jemand kann mir sagen worum das nicht funtzt :/
so nun nach Stunden der verzweiflung :/
poste ich mal hier und bitte um Hilfe....
Man Anliegen ist ein Formular so erstellen das automatisch Bestimme einträge in der MySQL Datenbank macht.....
Also so nen Grund gerüst hab ich schonmal aber funktioniert irgendwie nicht.
PHP-Code:
<html>
<head>
<?php
require 'config.php';
if ($submit)
{
$link = mysql_connect("$dbhost", "$dbuser", "$dbpass");
mysql_select_db("$database");
$query = "INSERT INTO login (userid,user_pass,************,email) VALUES('".$_POST['name']."','".$_POST['pass']."','".$_POST['************']."','".$_POST['mail']."')";
$result = mysql_query($query);
}
?>
</head>
<body>
<form action="test.php" method="post">
<table width="100%" border="0">
<tr>
<th width="46%" scope="row"><div align="left">Name:</div></th>
<td width="54%"><input name="name" type="text" id="name"></td>
</tr>
<tr>
<th scope="row"><div align="left">E-Mail:</div></th>
<td><input name="mail" type="text" id="mail"></td>
</tr>
<tr>
<th scope="row"><div align="left">Geschlecht:</div></th>
<td><select name="************" id="************">
<option value="M">Männlich</option>
<option value="F">Weiblich</option>
</select></td>
</tr>
<tr>
<th scope="row"><div align="left">Password:</div></th>
<td><input name="pass" type="text" id="pass"></td>
</tr>
</table>
<p>
<input name="submit" type="submit" id="submit" value="Account erstellen">
</p>
</form>
</body>
</html>
Kommentar