First time to build a website and need a little help with my script. I am getting the emal from the sender, the subject and the description but all other Requests are lost somewhere. Please help :/
<?php
$to = "user@example.com";
$subject = "Contact Us";
$name = $_REQUEST['name'] ;
$email = $_REQUEST['email'] ;
$cname = $_REQUEST['cname'] ;
$curl = $_REQUEST['curl'] ;
$getus = $_REQUEST['getus'] ;
$phone = $_REQUEST['phone'] ;
$description = $_REQUEST['description'] ;
$headers = "From: $email";
$sent = mail($to, $subject, $description, $headers) ;
if($sent)
{print "Your mail was sent successfully"; }
else
{print "We encountered an error sending your mail"; }
?>