Hi, ich habe das Problem das ich über ein Formular werte in eine MySQL 5.0 Datenbank übertragen möchte. Das macht er aber nicht. Könnt Ihr mir Helfen.
Code des Formular
Code des PHP-Doks:
HILFEEEE !!!
Code des Formular
PHP-Code:
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
<title>Title here!</title>
</head>
<body>
<form method='GET' action='bearbeiten.php'>
<table border="1" width="100%" id="table1">
<tr>
<td>
<table border="1" width="50">
<tr>
<td width="50">Name:</td>
<td><input type='text' name='postname' maxlength='100' size='30'></td>
</tr>
<tr>
<td>Status:</td>
<td><input type='text' name='poststatus' maxlength='40' size='30'></td>
</tr>
<tr>
<td> </td>
<td><input type='submit' name='postspeichern' value='Anlegen'></td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</body>
</html>
Code des PHP-Doks:
PHP-Code:
<html>
<head>
<title>Title here!</title>
</head>
<body>
<?php
$verbindung = mysql_connect("srv2003pdc:3309", "root","pass");
mysql_select_db("mitarbeiterstatus");
$tbname = $_GET['postname'];
$tbstatus = $_GET['poststatus'];
mysql_query("INSERT INTO
mbstatus
(name,status)
VALUES(
$tbname,
$tbstatus)
");
echo"<table width='300'>
<tr>
<td align='center' colspan='3'>- Mitarbeiter ERZEUGT - <br>
Der Mitarbeiter $tbname wurde erzeugt.<br>
</td>
</tr>
</table>";
include("ausgabe.php");
?>
</body>
</html>
Kommentar