A PHP Number Guessing Script : Self Call Form : Form PHP Source Code


PHP Source Code » Form » Self Call Form »

 

A PHP Number Guessing Script



<?php
$num_to_guess = 99;
$message = "";
if ! isset$guess ) ){
   $message = "Welcome to the guessing machine!";
}elseif$guess > $num_to_guess ){
   $message = "$guess is too big!";
}elseif$guess < $num_to_guess ){
   $message = "$guess is too small!";
}else {
    $message = "Well done!";
}
?>
<html>
<head>
<title>A PHP number guessing script</title>
</head>
<body>
<h1>
<?php print $message ?>
</h1>
<form action="<?php print $PHP_SELF?>" method="POST">
  Type your guess here: <input type="text" name="guess">
</form>
</body>
</html>


           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Form
» Self Call Form