17Sep/103
Guess the number game in PHP
Its a game for your member in your site its very interesting
use this code in your web site, if you want to entertain the visitors.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <!-- This Script is from www.hawkee.com, found at www.manycodes.com--> <html><body>Guess a number:<br /> <form method= "post" action= "/guess_the_number.htm" > 1. <input type= "radio" name= "guess" value= "1" ><br /> 2. <input type= "radio" name= "guess" value= "2" ><br /> 3. <input type= "radio" name= "guess" value= "3" ><br /> 4. <input type= "radio" name= "guess" value= "4" ><br /> 5. <input type= "radio" name= "guess" value= "5" ><br /> <input type= "submit" name= "Submit" value= "Submit" ></form> </body> </html> <br><font face= "Tahoma" > <span style= "font-size: 8pt; text-decoration: none" >PHP Free Code</span> </a></font> |