Ok i set up a basic registration form, I used this line to tell it to post the results to this php file.
<form method="post" action="results.php">
I don't know if this matters but i would like the results to be displayed in a table this is the code that i have to display the results
<table border="1" width="600" bordercolor="#000000" cellspacing="0">
<tr>
<td width="200">
<p align="center">
<font size="2" face="Verdana">
<?php
echo $Name;
?>
</font>
</p>
</td>
<td width="200">
<p align="center">
<font size="2" face="Verdana">
<?php
echo $Handle;
?>
</font>
</p>
</td>
<td width="200">
<p align="center">
<font size="2" face="Verdana">
<?php
echo $Games;
?>
</font>
</p>
</td>
</tr>
</table>
Sorry for not indenting i didn't know how it would show up on the forum, but anyways, that displays the results but it doesn't save it to the .php, my question is how would i save those results. And when the next person registers thier results would be displayed in a table below the previous one. This might be a simple question for all of you but i'm new to coding so please be nice.