PHP
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
<title>Test!</title>
</head>
<body>
<form action="" method="POST">
<p><input type="text" name="user"></p>
<input type="submit" name="sendit" value="Ok">
</form>
<?php
if (isset($_POST['sendit']) && $_POST['user']!= "") {
echo "Herzlich Willkommen ".$_POST['user'];
}
else if(isset($_POST['sendit'])) {
echo "Das Eingabefeld ist leer.";
}
?>
</body>
</html>
Alles anzeigen
so sieht das momentan aus.
Beim drücken des OK Buttons, soll er mir "Willkommen $user" zurück geben, also hinschreiben. Eigentlich total simple, aber ich wollt mal wieder anfangen mit PHP.