I have tried using $_POST array variables in the following ways

$message = "($_POST['first_name'])
($_POST['last_name'])\n($_POST['address'])\n($_POST['city'])
($_POST['state'])
($_POST['zip'])\n($_POST['country'])\n($_POST['email'])\n($_POST['design'])\
n($_POST['comments'])";

    $message = "$_POST['first_name']
$_POST['last_name']\n$_POST['address']\n$_POST['city'] $_POST['state']
$_POST['zip']\n$_POST['country']\n$_POST['email']\n$_POST['design']\n$_POST[
'comments']";

Neither of these have worked what am I doing wrong?

Steve

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to