hallo,
ich hab folgendes problem:
Code:
<
html>
<head>
<title>
Seite
</title>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="4"
<tr>
<td align="center">
<h2><u>Gästebuch</u></h2>
</td>
</tr>
<tr>
<td align="left">
[b]Name: [/b]
<form action="gaestebuch.php" method0"post">
<input name="benutzername" method="post" type="text" size="15" maxlength="15">
</form>
</td>
</tr>
<tr>
<td>
[b]<h4>Hier können sie einen Kommentar hinterlassen.[/b]</h4>
<form action="gaestebuch.php" method0"post">
<textarea name="message" cols="50" rows="10"></textarea>
</form>
</td>
</tr>
<tr>
<td>
<form action="gaestebuch.php" method0"post">
<button name="Eintragen" type="button"
onClick="self.location.href='http://
localhost/Gaestebuch.php'">
[b]<u>Eintragen</u>[/b]
</button>
</form>
</td>
</tr>
<tr>
<td>
<?php
echo $benutzername;
if ($benutzername=="")
{
echo "if";
# onClick="self.location.href='http://
localhost/Gaestebuch.html'"
}
else
{
echo "else";
}
?>
</td>
</tr>
</table>
</div>
</form>
</body>
</
html>
Das steht bei mir in Gaestebuch.php
Wenn ich auf den Button clicke erwarte ich, dass benutzername auch ausgegeben wird. Wo liegt mein Fehler?
PS: Ich lerne seit gestern php.
thx und mfg
freak