Thanks for the reply guys.
No, I don't get any error messages, just that upon clicking "Submit", nothing happens! Being new to PHP, I was wondering if after clicking the "Submit" button, logically I would be executing the next line of code right after "header("location:infor_form.php")", which would be something like:
if(!isset($_SESSION['cart'])) { // first item to be added to the cart
header("Location: info_form.php?builder=$builder");
$_SESSION['cart'] = array();
// get form variables from POST
$_SESSION['Name'] = $_POST['Name'];
$_SSSSION['Email'] = $_POST['Email'];
etc....
How would you setup the submit button in the form?
Right now, in my form, I have:
<a href="javascript:;" onClick="if (checkForm(document.info_form)) location.href='add_cart.php'; else return false;"><img src="../images/Submit.gif" border="0" /></a>
(the form's name is info_form in the file info_form.php; the php file that uses the form is add_cart.php, and checkForm checks if the required fields are filled out.)
Thanx.