I have a website and we host tournaments.
I'd like to have a form for people to sign up.
From searching the web I could find how to make a form:
Code:
<form name="input" action="/solo/listpam.php" method="post">
B.net Username: <input type="text" name="user" />
Char Code #: <input type="text" name="cc#" />
<input type="submit" value="Submit" />
</form>
However, I don't know how to make the form update a list?
For example, when someone enters their name and char# and then hit submit, It then reloads the page and adds their name to the list of already registered players.
I'm familiar with html and css; trying to learn some php but just started.