Passing multiple values from HTML form select box with PHP to SQL statement
10:10 22 May 2012

I have a form with a select box where the user can select pre-existing fields from a database:

Title and Description:

...

How can I send all three of those values (separately) to my postback for SQL?

if (isset($_POST['submitted'])) { 
  //Get params for prepared statements
  $startDatec= date("Y-m-d H:i:s", strtotime($_POST['startEventDate']));
  $endDatec= date("Y-m-d H:i:s", strtotime($_POST['endEventDate']));
  $startTimec=$_POST['startTime'];
  $endTimec=$_POST['endTime'];
  $recurc=$_POST['recurrence'];
  $finalc= date("Y-m-d H:i:s", strtotime($_POST['finalDate']));
  ...
php html select