Jo ich hab ein Formular, das eingentlich zum ändern bon Datensätzen dienen soll, jedoch ändert sich NICHTS! warum???
Könnte mir da wer helfen? Wäre wirklich dringend, dass ich das hinbekomme
PHP:
<html>
<head><title>hi</title></head>
<body>
<form action="<?$PHP_SELF?>" method="post" name="submit">
<input type="text" name="name">
<input type="text" name="pw">
<input type="text" name="id">
<input type="submit">
</form>
<?
$connect = mysql_connect("localhost","es","es11");
mysql_select_db("es",$connect);
$sql = "UPDATE login SET username='$name',password='$pw' WHERE id=$id";
if (!empty($submit)) {
$result = mysql_query($sql);
echo "Thank you! Information updated.\n";
}
?>
</body>
</html>
Könnte mir da wer helfen? Wäre wirklich dringend, dass ich das hinbekomme