Lime Posted June 29, 2008 Share Posted June 29, 2008 Well I am making a number guessing game. It works just fine. But if the person doesn't pick a number and just clicks submit, it says that you got the number wrong. How can I make it say something like "Please go back and select a number." Thanks to all that can help. Here is my current script with the radiobuttons to select a number. <form action="if.php" method="post"> Please select a number to guess.<br> <input type="radio" name="num" value="1">1 <input type="radio" name="num" value="2">2 <input type="radio" name="num" value="3">3 <input type="radio" name="num" value="4">4 <input type="radio" name="num" value="5">5<br> <input type="submit" value="Guess that number!"> </form> <?php $cpu_number = rand(1, 5); If (isset ($_POST['num'])) { $number = $_POST['num']; } If ($number == $cpu_number) { echo "You guessed $number... Your number the same! You win!"; } elseif ($number != $cpu_number) { echo "You guessed $number... Your number does not match. Sorry, you lose. The computer's number was $cpu_number."; } elseif (noNumberSelected) { echo "You haven't pressed a number. Please go back and select a number."; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/112498-solved-need-some-simple-help/ Share on other sites More sharing options...
bobsch Posted June 29, 2008 Share Posted June 29, 2008 If looks like you need a loop to do that. Do you know how to make a while loop? Basically, you can set up a while(x = false) loop, where x is a boolean variable. When they get the question right, set x to true, and it will exit the loop. Otherwise, it will continue to loop through the selections. Err...I guess that would only work if the options were inside the PHP code, and you had a while loop around all that. I'm not sure, but someone else can probably help you out. Quote Link to comment https://forums.phpfreaks.com/topic/112498-solved-need-some-simple-help/#findComment-577634 Share on other sites More sharing options...
br0ken Posted June 29, 2008 Share Posted June 29, 2008 <?php $cpu_number = rand(1, 5); $number = (int)$_POST['num']; switch($number) { case $cpu_number: echo "You guessed $number... Your number is the same! You win!"; break; case 0: echo "You haven't selected a number. Please go back and select a number."; break; default: echo "You guessed $number... Your number does not match. Sorry, you lose. The computer's number was $cpu_number."; break; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/112498-solved-need-some-simple-help/#findComment-577635 Share on other sites More sharing options...
Lime Posted June 29, 2008 Author Share Posted June 29, 2008 Okay, thats one way of doing it. I'll try it. P.S. Please forget the: } elseif (noNumberSelected) { echo "You haven't pressed a number. Please go back and select a number."; That was a sad attempt that I forgot to take out... Quote Link to comment https://forums.phpfreaks.com/topic/112498-solved-need-some-simple-help/#findComment-577637 Share on other sites More sharing options...
jelly Posted June 29, 2008 Share Posted June 29, 2008 <?php $number = $_POST['num']; $back_link = $_SERVER['HTTP_REFERER']; if (empty($number) || (int)$number == 0) { echo ('Please go back and select a number. '); echo ('<a href="'.$back_link.'">Go back</a>'); } else { // your code } ?> Quote Link to comment https://forums.phpfreaks.com/topic/112498-solved-need-some-simple-help/#findComment-577639 Share on other sites More sharing options...
xtopolis Posted June 29, 2008 Share Posted June 29, 2008 Or simply set one of them to checked to begin with. <input type="radio" name="num" value="1" checked="yes" /> Quote Link to comment https://forums.phpfreaks.com/topic/112498-solved-need-some-simple-help/#findComment-577643 Share on other sites More sharing options...
Lime Posted June 29, 2008 Author Share Posted June 29, 2008 br0ken, with ur code it automatically says no number has been selected. =\ jelly, testing yours now. Quote Link to comment https://forums.phpfreaks.com/topic/112498-solved-need-some-simple-help/#findComment-577644 Share on other sites More sharing options...
br0ken Posted June 29, 2008 Share Posted June 29, 2008 It should only say that if the $number is zero... Anyways by the looks of it Jelly's code should work so just go for that Quote Link to comment https://forums.phpfreaks.com/topic/112498-solved-need-some-simple-help/#findComment-577649 Share on other sites More sharing options...
kenrbnsn Posted June 29, 2008 Share Posted June 29, 2008 The following code has been tested and works fine: <form action="" method="post"> Please select a number to guess.<br> <?php for ($i = 1; $i < 6; $i++) echo '<input type="radio" name="num" value="' . $i . '">' . $i; ?> <br><input type="submit" name="submit" value="Guess that number!"> </form> <?php If (isset($_POST['submit'])) { $cpu_number = rand(1, 5); $number = $_POST['num']; switch ($number) { case $cpu_number: echo "You guessed $number... Your number the same! You win!"; break; case 0: echo "You haven't pressed a number. Please go back and select a number."; break; default: echo "You guessed $number... Your number does not match. Sorry, you lose. The computer's number was $cpu_number."; } } ?> Ken Quote Link to comment https://forums.phpfreaks.com/topic/112498-solved-need-some-simple-help/#findComment-577652 Share on other sites More sharing options...
Lime Posted June 30, 2008 Author Share Posted June 30, 2008 Thanks Ken! Another challenge for you. Can you get it to hide the radiobuttons when it says the "You haven't pressed a number." thing? Quote Link to comment https://forums.phpfreaks.com/topic/112498-solved-need-some-simple-help/#findComment-577669 Share on other sites More sharing options...
kenrbnsn Posted June 30, 2008 Share Posted June 30, 2008 Here's one way -- I modified your script a little to be more interesting... <?php session_start(); If (isset($_POST['submit'])) { $cpu_number = $_SESSION['cpu_guess']; unset($_SESSION['cpu_guess']); $number = $_POST['num']; switch ($number) { case $cpu_number: echo "You guessed $number... Your number the same! You win!"; break; case 0: echo "You haven't pressed a number. Please go back and select a number."; break; default: echo "You guessed $number... Your number does not match. Sorry, you lose. The computer's number was $cpu_number."; } } else { $guesses = rand(5,15); $_SESSION['cpu_guess'] = rand(1,$guesses); ?> <form action="" method="post"> I'm thinking of a number between 1 and <?php echo $guesses ?> Can you guess what it is?.<br> <?php for ($i = 1; $i <= $guesses; $i++) echo '<input type="radio" name="num" value="' . $i . '">' . $i; ?> <br><input type="submit" name="submit" value="Guess that number!"> </form> <?php } ?> Ken Quote Link to comment https://forums.phpfreaks.com/topic/112498-solved-need-some-simple-help/#findComment-577680 Share on other sites More sharing options...
Lime Posted June 30, 2008 Author Share Posted June 30, 2008 Thanks Ken, its perfect! Thats really all I need. This thread is ready to be locked. Quote Link to comment https://forums.phpfreaks.com/topic/112498-solved-need-some-simple-help/#findComment-577696 Share on other sites More sharing options...
kenrbnsn Posted June 30, 2008 Share Posted June 30, 2008 We don't lock threads like this. But you can mark it "Solved" by clicking the "Topic Solved" button at the bottom of the replies. Ken Quote Link to comment https://forums.phpfreaks.com/topic/112498-solved-need-some-simple-help/#findComment-577698 Share on other sites More sharing options...
Lime Posted June 30, 2008 Author Share Posted June 30, 2008 Kk, and that is a very cool feature. Quote Link to comment https://forums.phpfreaks.com/topic/112498-solved-need-some-simple-help/#findComment-577714 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.