FunkyELF Posted October 13, 2006 Share Posted October 13, 2006 Hey guys,As an excersize, and to take a break from my book, I tried putting together the following page. It has a hard coded secret number and you have to guess what it is. It tells you whether you need to guess higher or lower. It works okay. I am wondering what a good way to have a counter would be. To count the number of guesses.Right now it counts the guesses but it does so using a visible field which can be edited. Is there a way to pass information using post without it being visible like it is now?Thanks,~Eric[code]<?php $tries = 0; if(isset($_POST['okay'])){ $tries = $_POST['tries'] + 1; $secret = 27; if($_POST['guess'] < $secret){ echo "higher<br/>"; } else if($_POST['guess'] > $secret){ echo "lower<br/>"; } else { echo "hooray ... got it in " . $tries . " tries<br/>"; } }?><form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post"> <input type="text" name="guess" value="<?php echo @$_POST['guess']; ?>">Guess<br/> <input type="text" name="tries" value="<?php echo $tries; ?>">Tries<br/> <input type="submit" name="okay" value="SUBMIT ! ! !"><br/></form>[/code] Link to comment https://forums.phpfreaks.com/topic/23894-n00b-question/ Share on other sites More sharing options...
lead2gold Posted October 13, 2006 Share Posted October 13, 2006 [quote author=FunkyELF link=topic=111438.msg451648#msg451648 date=1160770643][code]<?php $tries = isset($_POST['tries'])?$_POST['tries']:0; if(isset($_POST['okay'])){ $tries = $_POST['tries'] + 1; $secret = 27; if($_POST['guess'] < $secret){ echo "higher<br/>"; } else if($_POST['guess'] > $secret){ echo "lower<br/>"; } else { echo "hooray ... got it in " . $tries . " tries<br/>"; } }?><form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post"> <input type="text" name="guess" value="<?php echo @$_POST['guess']; ?>">Guess<br/> <input type="hidden" name="tries" value="<?php echo $tries; ?>">Tries<br/> <input type="submit" name="okay" value="SUBMIT ! ! !"><br/></form>[/code][/quote]i modified your code to do what you ask... :) try it out Link to comment https://forums.phpfreaks.com/topic/23894-n00b-question/#findComment-108599 Share on other sites More sharing options...
FunkyELF Posted October 13, 2006 Author Share Posted October 13, 2006 [quote author=lead2gold link=topic=111438.msg451650#msg451650 date=1160770790]i modified your code to do what you ask... :) try it out[/quote]Thanks, I figured it was probably something easy. I was looking at html forms on w3schools but it didn't mention that where I was looking.I just bought a book on PHP and MySQL and I'm trying to learn it but it looks like I also need to pick up a book on HTML, CSS, Java script, XML.A book that would teach all of that would no doubt be bloated and not go into enough detail to be useful but it really seems like a pain to become an expert in all of those things to make a decent web page.In C, you learn C and you can make a decent program.In Java, you learn Java and you can make a decent program.To make a decent web page the right way with PHP, you need to learn at the very least HTML and CSS and to make it functional you'll need to additionally learn MySQL and Java Script. >:( >:( >:( Link to comment https://forums.phpfreaks.com/topic/23894-n00b-question/#findComment-108609 Share on other sites More sharing options...
kenrbnsn Posted October 13, 2006 Share Posted October 13, 2006 You can also use sessions for this.[code]<?php session_start(); $tries = isset($_SESSION['tries'])?$_SESSION['tries']:0; $secret = isset($_SESSION['secret'])?$_SESSION['secret']:rand(1,100); $_SESSION['secret'] = $secret; if(isset($_POST['okay'])){ $tries++; $_SESSION['tries'] = $tries; if($_POST['guess'] < $secret){ echo "higher<br/>"; } else if($_POST['guess'] > $secret){ echo "lower<br/>"; } else { echo "hooray ... got it in " . $tries . " tries<br/>"; unset($_SESSION['tries']); unset($_SESSION['secret']); } }?><form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post"> Guess<input type="text" name="guess" value="<?php echo @$_POST['guess']; ?>"><br/> <input type="submit" name="okay" value="Try"><br/></form>[/code]I also made a few other changes like making your secret number a random number and passing it via a session variable also.Both the number of tries and the secret number are reset when the person guesses the current secret number.Ken Link to comment https://forums.phpfreaks.com/topic/23894-n00b-question/#findComment-108619 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.