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:
Related in same category :
-
|