Hallo zusammen,
bin ein Neuling auf dem Gebiet PHP&MySQL.
Habe mir ein Formular gebastelt welches vis $_POST Daten in die SQL-Datenbank eintragen soll.
Dies funktioniert aber nicht, bekomme auch keine Fehlermeldung. Wäre coll wenn Ihr mal das Script nachschauen könntet.
Vielen Dank !!!
HTML-Script:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
<head>
<title>Titel</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
<meta name="description" content="" />
<meta name="author" content="" />
<meta name="keywords" content="" />
<meta name="generator" content="Webocton - Scriptly (www.scriptly.de)" />
<style type="text/css">
#head {
background-color:#FFFF99;
width: 300px;
height:300px;
left:500px;
top:200px;
border:1px solid black;
position:absolute;
}
#text {
width:100px;
height:50px;
top:70px;
left:50px;
font-size:12px;
position:absolute;
}
#input {
width:100px;
height:50px;
top:70px;
left:110px;
font-size:10px;
position:absolute;
}
input {
font-size:10px;
font-family:Verdana;
color:black;
}
</style>
</head>
<body bgcolor="#FFFFCC">
<div id="head">
<br><center>Portal zum eintragen neuer User</center>
<div id="text">
<form action="eintrag_user.php" method="POST">
Vorname: <input type="text" name="vorname"><br>
Nachname: <input type="text" name="nachname"><br>
Alter: <input type="int" name="alter"><br>
Username: <input type="text" name="username"><br>
Passwort: <input type="text" name="password"><br><br>
<input type="submit" value="abschicken">
</form>
</div>
</div>
</body>
</html>
PHP-Script:
bin ein Neuling auf dem Gebiet PHP&MySQL.
Habe mir ein Formular gebastelt welches vis $_POST Daten in die SQL-Datenbank eintragen soll.
Dies funktioniert aber nicht, bekomme auch keine Fehlermeldung. Wäre coll wenn Ihr mal das Script nachschauen könntet.
Vielen Dank !!!
HTML-Script:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
<head>
<title>Titel</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
<meta name="description" content="" />
<meta name="author" content="" />
<meta name="keywords" content="" />
<meta name="generator" content="Webocton - Scriptly (www.scriptly.de)" />
<style type="text/css">
#head {
background-color:#FFFF99;
width: 300px;
height:300px;
left:500px;
top:200px;
border:1px solid black;
position:absolute;
}
#text {
width:100px;
height:50px;
top:70px;
left:50px;
font-size:12px;
position:absolute;
}
#input {
width:100px;
height:50px;
top:70px;
left:110px;
font-size:10px;
position:absolute;
}
input {
font-size:10px;
font-family:Verdana;
color:black;
}
</style>
</head>
<body bgcolor="#FFFFCC">
<div id="head">
<br><center>Portal zum eintragen neuer User</center>
<div id="text">
<form action="eintrag_user.php" method="POST">
Vorname: <input type="text" name="vorname"><br>
Nachname: <input type="text" name="nachname"><br>
Alter: <input type="int" name="alter"><br>
Username: <input type="text" name="username"><br>
Passwort: <input type="text" name="password"><br><br>
<input type="submit" value="abschicken">
</form>
</div>
</div>
</body>
</html>
PHP-Script:
PHP-Code:
<?php
if (!isset($_POST['abschicken'])) {
include('eintrag.html');
exit; }
$server = "localhost";
$user = "root";
$pass = "";
$database = "user";
$table = "new_user";
$verbindung = mysql_connect($server, $user, $pass)
or die ("verbindung zu sql geht nicht");
mysql_select_db($database, $verbindung) or die ("Die Datenbank existiert nicht!");
$sql = "INSERT INTO $table (vorname, nachname, alter, username, password)
VALUES ('". $_POST['vorname']."', '". $_POST['nachname']."', '".
$_POST['alter']."', '". $_POST['username']."', '". $_POST['password']."')";
$ausgabe = "gespeichert!";
mysql_query($sql) or die (mysql_error());
mysql_close($verbindung);
echo $ausgabe;
?>
Kommentar