This is the error message i got: (Parse error: syntax error, unexpected T_VARIABLE in /home/vocroyal/public_html/sendmail.php on line 12)
This is the full script detail:
This is the full script detail:
Code:
<?php $fullname = $_REQUEST['fullname'] ; $company = $_REQUEST['company'] ; $address = $_REQUEST['address'] ; $line1 = $_REQUEST['line1'] ; $city = $_REQUEST['city'] ; $country = $_REQUEST['country'] ; $email = $_REQUEST['email'] ; $phone = $_REQUEST['phone'] ; $product = $_REQUEST['product'] ; $order = $_REQUEST['order'] $comments = $_REQUEST['comments'] ; mail( "sales@vocroyalresources.com","Product Order",$fullname, $company, $address, $line1, $city, $country, $email, $phone, $product, $order, $comments, "From: $email"); echo "<h2>Thank you for sending your order. We will get back to you!<p>Please Use the Back Button on the Left side of your Browser to Continue.</p></h2>"; ?>
Comment