Can anyone tell me any reason why the php variables are not recieving values from the first form? <?php $ip = $_POST['ip']; $httpref = $_POST['httpref']; $httpagent = $_POST['httpagent']; $visitor = $_POST['formElement_First'].' '.$_POST['formElement_Last']; $street1 = $_POST['formElement_Street1']; $street2 = $_POST['formElement_Street2']; $city = $_POST['formElement_City']; $state = $_POST['formElement_State']; $zip = $_POST['formElement_Zip']; $visitormail = $_POST['formElement_Email']; $notes = $_POST['formElement_Comments']; $about = $_POST["formElement_radio"]; $dayphone = $_POST['formElement_DaytimePhone']; ?> I can tell you that $about is populated. formElement_radio is a group of radio buttons. Thanks in advance. John
Try var_dump($_POST); and tell me the output. Are you sure it's being sent by POST? Could you post the form?
post the action part of your form. ---------------------------------- Download Free Ebooks (Java, PHP, Linux, ASP.NET, VB.NET)
This has already been solved... and do you have to post those links at the bottom of every post? Use the signature feature...