Here is the code after the changes you told me to make. Unfortunatly it still isnt submitting the information into the database. Could there be something wrong with the settings of my columns that wouldnt allow information to be placed in it? If you need to know anything else just ask. [code]<html> <head> <title>Your Entry</title> </head> <table align="center"> <tr> <td> <a href="http://www.officalhalo.com">Home</a> | <a href="/tournament/FFA.htm">FFA</a> | <a href="/tournament/signup.htm">Sign Up</a> | <a href="/tournament/results.htm">Results</a> | <a href="/tournament/participants.php">Participants</a> </td> </tr> </table> <body> <h3 align="center">Your Entry</h3> <?php // Add to make sure you see PHP errors/warnings/notices ini_set('display_errors', '1'); error_reporting(E_ALL); $gamertag=$_POST['gamertag']; $eaddress=$_POST['eaddress']; if (!$gamertag || !$eaddress) { echo 'You have not entered all of the required information.<br />' .'Please go back and try again.'; exit; } @ $db = new mysqli('localhost', 'chilllax_chillla', 'red123', 'chilllax_tournament'); if (mysqli_connect_errno()) { echo 'Error: Could not connect to database. Please try again later.'; exit; } $query = "INSERT INTO ffa (gamertag, eaddress) VALUES ('$gamertag', '$eaddress')"; $result = $db->query($query); if ($result) echo $db->affected_rows.' Entry submitted into database.'; else { echo 'Could not insert. Error: ', mysqli_error(); exit; // } ?> </body> </html> [/code]