Okay so I have a page which is called Record Results. This page is accessed by a user clicking the add Result button of a specified Event which is passed as a URL Parameter like RecordResults.php?EventID=16. I have created a combo box which is filled with members names as well as a Place and Result form where there performance can be added. I am trying to insert the values into the MySQL Database however nothing is ever getting added. Any assistance would be appreciated.
<?php
error_reporting (E_ALL ^ E_NOTICE);
$con = mysql_connect("localhost","root","");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("clubresults", $con);
if (isset($_POST['submit'])) {
// Get id from URL
$id = mysql_real_escape_string($_GET['EventId']);
// If id is number
if ($id > 0)
{
// Get record from database
$sql = "
SELECT EventId
FROM events
WHERE EventId = " . $id;
$result = mysql_query($sql);
}
$sql="INSERT INTO results (MemberID, Result, Place)
VALUES
('".$_POST['student']."', '".$_POST['Result']."', '".$_POST['Place']."')";
$add_event = mysql_query($sql);
echo "Successfully Added 1 Event";
}
else{
echo "Error Adding Result";
}
?>
HTML Form
<h2> Record Results For Specific Event </h2>
<form action="<?php echo $_SERVER['PHP_SELF']?>" method="post">
<table border="0"><p>
<tr><td colspan=2></td></tr>
<tr><td>Member Name: </td><td>
<?php
$query="SELECT * FROM members";
/* You can add order by clause to the sql statement if the names are to be displayed in alphabetical order */
$result = mysql_query ($query);
echo "<select name=student value=''>Student Name</option>";
// printing the list box select command
while($nt=mysql_fetch_array($result)){//Array or records stored in $nt
echo "<option value='$nt[MemberID]'>$nt[Firstname] $nt[Surname]</option>";
/* Option values are added by looping through the array */
}
echo "</select>";// Closing of list box
?>
<tr><td>Score:</td><td>
<input type="text" name="Score" maxlength="10">
<tr><td>Place:</td><td>
<input type="text" name="Place" maxlength="10">
</td></tr>
<tr><th colspan=2><input type="submit" name="submit"
value="Add Result"> </th></tr> </table>
</form>