View Single Post
Old 02-08-2013, 02:56 PM   PM User | #2
SuperMatrix78
New to the CF scene

 
Join Date: Dec 2012
Posts: 5
Thanks: 1
Thanked 0 Times in 0 Posts
SuperMatrix78 is an unknown quantity at this point
I posted my code wrong here is what I have so far (at least the important stuff).
Code:
PHP Code:
<?php if(isset($_POST['submit'])) { $triviaAnswer $_POST['triviaAnswer']; $playersGuess $_POST['playersGuess']; } $GameAnswer "The Artist"; $NewGameAnswer substr_replace($GameAnswer"*** ******",0); ?>
[HTML] <p>Enter a letter:&nbsp;<input name="playersGuess" type="text" maxlength="1" /> <br /><br /> <input name="submit" type="submit" value="Check" /> <br /> <input name="triviaAnswer" type="hidden" value="<?php echo $GameAnswer ?>" /> <input name="displayAnswer" type="hidden" value="<?php echo $NewGameAnswer?>" /> </form> [/HTML]
SuperMatrix78 is offline   Reply With Quote