Blue|Fusion Rated XXX
|
Posted: Wed, 08 Nov 2006 13:39:38 Post Subject: |
|
|
Try setting the variables since register_globals is not getting the info from IIS.
Code: | $name = $_POST['name'];
$company = $_POST['company'];
$address = $_POST['address'];
$email = $_POST['email'];
$telephone = $_POST['telephone'];
$cust1 = $_POST['cust1'];
etc... |
This will fetch the POST data from the submitted form and assign it to a variable. Just put that above the rest of the stuff and see what happens. |
|