<html><head> <title>The processor of simpleform.html</title></head><body><center>Hello <?php// get name from form$name = $_POST['yourname'];// did they really enter something?if (strlen($name) == 0) echo "whoever you are.";else echo $name;?></body></html>