RedRevolution Posted April 17, 2006 Share Posted April 17, 2006 I'm trying to create a set of forms where a user can imput a score for a game in a field. Once he/she imputs a score, I need to be able to output it. If someone would be so kind to create a quick, working, "Hello World" sort of thing, I'd be very appreciative. Thanks! Quote Link to comment Share on other sites More sharing options...
Orio Posted April 17, 2006 Share Posted April 17, 2006 What do you mean? You want to just write what he submitted?If so, do something like this:In form.htm:[code]<html><form action="form.php" method="POST">Enter your score:<br><input type="text" name="score"> <input type="submit"></form></html>[/code]For the form.php:[code]<html><?phpecho($_POST['score']);?></html>[/code]I am not sure if thats what you ment but it sure seems like it.But if you ment having alot of forms and then output everything, you can either use <input type="hidden"> (not recommended) or use sessions.Orio. Quote Link to comment Share on other sites More sharing options...
RedRevolution Posted April 18, 2006 Author Share Posted April 18, 2006 That is a great start! Here is what I need.I need the user to be able to go to a tournament page, enter a score, then that page stores the score somewhere so others can view it ( on the same page ). I'm not quite sure how to approach this. This is a short rough algorithm.> User enters a score and their name> Score and name is stored in database> Score and name is then shown on another page Quote Link to comment Share on other sites More sharing options...
Orio Posted April 18, 2006 Share Posted April 18, 2006 Yes, thats exactly what you need to do.Look for tutorials to help you here :)Orio. Quote Link to comment 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.