Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>
share|improve this question

closed as too localized by Linus Kleen, tereško, Nik...., DocMax, hims056 Nov 21 '12 at 5:07

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Exactly what part will you be needing help with? The creation of the dropdown list or extracting the options for the list from a queryresult?

The former being quite easy to explain, the latter might prove more difficult.

As a start, I would recommend you use aliases for the query. Observe the following:

SELECT EventID AS ei, EventName AS en, EventDate AS ed, EventLocation AS el FROM events WHERE ei = " ... ";

Kind Regards,

D.

share|improve this answer
Thanks for your response! I am looking for help integrating a drop down menu with a form. However the form has to insert data into the results table and members drop down read the members table which is associated with a memberID which is located within both the results and members tables – user1371500 May 28 '12 at 2:02
Don't mention it, glad to help :) Okay, so you would need the query to do so? Or the way to create the dropdown? – Digitalis May 28 '12 at 2:08
The problem is, your question needs a little bit more explanation. As far as I can understand you're trying to insert data into a dropdown, to fill the dropdown? Using php this cannot be done in one instance. You need another page load or ajax to do so. Again, I might not have understood your question. In that case, please change the original post and I will react to that again. – Digitalis May 28 '12 at 2:17
Edited to be more clear. Thankyou – user1371500 May 28 '12 at 4:20
Okay, the first thing to do is change: mysql_query(); to mysql_query() or die(mysql_errno()); This outputs any errors given on the execution of a query. – Digitalis May 28 '12 at 4:37
show 1 more comment

Not the answer you're looking for? Browse other questions tagged or ask your own question.