ok...I have another problem. I was using PHP to validate teh text fields, but the validate one at a time. I want the user to see everywhere they messed up at the same time. SO if they leave 5 fields blank I want them to get 1 error message about all 5 fields. Would that B PHP or Javascript or a combo? Here is an example
if (strlen($name_of_person_placing_order) == 0 )
{
die("<p align='center'><font face='Arial' size='5' color='#4b2600'>Please enter name</font></p>");
}
if (strlen($phone_number) == 0 )
{
die("<p align='center'><font face='Arial' size='5' color='#4b2600'>Please enter a phone number</font></p>");
}