So I have this little php script which upon form completion sends the information to my email. I was able to make it work with one input, however, when trying to specify 3 different inputs, it won't go through.
I suspect that maybe I'm not specifying the inputs as I should with isset at the beginning of the if statement. I'm very new to php and appreciate all the help I can get, anyway here's the code.
<?php
if (isset($_POST['name' && 'emailq' && 'message'])){
$visitor_name = $_POST['name'];
$visitor_email = $_POST['emailq'];
$visitor_message = $_POST['message'];
$email_from = "LightDesigns";
$email_subject = "new quot";
$email_body = "Name: " .$visitor_name."
Email: " .$visitor_email."
"
.$visitor_message;
$to = "stefanvujic576@gmail.com";
$headers = "From: $email_from
";
$headers .= "Reply-To: $visitor_email
";
$result = mail($to,$email_subject,$email_body,$headers);
}
?>
<?php
$link_address = 'www.light-designsonline.co.uk';
if ($result){
echo '<link href="css/phpcss.css" rel="stylesheet">';
echo "<header></header>";
echo '<h1>Thank You!</h1>';
echo "<p>I'll get in contact with you shortly.</p>";
}else{
echo '<link href="css/phpcss.css" rel="stylesheet">';
echo "<header></header>";
?>
}
<?php
}
?>
<form action="quotform.php" method="POST" class="quote" name="quot">
<div>
<h1>Get a quot</h1>
<hr align="left" style="width: 82%;">
<label>Name</label><br>
<input type="text" placeholder="Name" class="form" autocomplete required name="name">
</div>
<div>
<label>Email</label><br>
<input type="email" placeholder="Email Address" class="form" autocomplete required name="emailq">
</div>
<div>
<label>Message</label><br>
<textarea placeholder="Message" name="message"></textarea>
</div>
<button class="button_1" type="submit" class="form"><span>Send</span></button>
</form>