so you just want a form that insert's data into a database then?
if so then this may help as a kind of guideline to what you need as i dont exactely know all the rows e.t.c.. for the Invasion board database
<?php
$pagename = $_SERVER['PHP_SELF'];
$dbh=mysql_connect ("localhost", "dbname", "dbpassword") or die ('I cannot connect to the database.');
mysql_select_db ("ewewrestling");
echo " <FORM METHOD=\"post\" ACTION=$pagename?action=add>\n";
echo "<table width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n";
echo " <tr>\n";
echo " <td>Name: <input type=\"text\" name=\"name\" value=\"$name\" size=\"20\">\n </td>\n</tr>\n"; // Copy this line as many times as you want for more feilds
echo " <td>Email: <input type=\"text\" name=\"email\" value=\"$email\" size=\"20\">\n </td>\n</tr>\n"; // Copy this line as many times as you want for more feilds
echo " </table>";
echo " </td>";
echo "\n</table>";
echo " <INPUT TYPE=\"submit\" VALUE=\"Add\">";
echo " </FORM>";
if ($action == "add") {
$name = $_REQUEST['name'];
$email = $_REQUEST['email'];
$SQL = "INSERT INTO [tablename here]
(NAME,EMAIL) VALUES
('$name','$email')"; // You will have to add more rows for the more feilds you have
// echo $SQL;
$result = @($SQL) or die(mysql_error());
echo "Thank You For Registering.\n";
}
?>
In it you will need to add more fields e.t.c..
hope it helps😃