if(isset($_POST['submit'])){
$eventSelect = $_POST['eventSelect'];
$eventLocation = $_POST['eventLocation'];
$eventDate = $_POST['eventDate'];
echo "Event Name:";echo $eventName;
echo "<br /><br />Event Location:";echo $eventLocation;
echo "<br /><br />From :"; echo $eventDate;
}
When a user goes to the site they are presented with a drop down that lists the Event, and updates based on selection. Is there a way I can give the result of this an item number that I can than have enter a simple php cart through a session_start and then be directed to paypal using a checkout button? Or should I add an item number to each item in the database? Since a user has to result in one of those results anyway? If I was to do that how would one call that last field after the query? Is that possible?
Sorry if this is redundant I'm not used to working with shopping carts.