PHP code used to collect form data using the POST method $camera_price = $_POST['camera_price'];
PHP code used to collect form data using the POST method and place it in a hidden form field <?php echo $_POST["camera_price"] ?>
PHP code used to collect form data using the POST method and place it in a hidden form field $to = "anyemail@hotmail.com";
$subject = "cameraworld.com order";
$body = "Place text and variables here to be sent via e-mail";
$headers = "Order Form"; mail($to, $subject, $body, $headers);