/
/
home
/
u523034047
/
domains
/
nainitalfloweritech.com
/
public_html
Server: in-mum-web1112.main-hosting.eu (62.72.28.111)
You: 216.73.216.60
PHP 8.3.16
Dir:
/home/u523034047/domains/nainitalfloweritech.com/public_html
Edit:
/home/u523034047/domains/nainitalfloweritech.com/public_html/send-enquiry.php
<?php include('includes/config.php'); $name = $_POST['name']; $mobile = $_POST['mobile']; $email = $_POST['email']; $message= $_POST['message']; $address= $_POST['address']; $product= $_POST['product']; /* SAVE IN DATABASE */ mysqli_query($con,"INSERT INTO enquiries(name,mobile,email,address,message,product) VALUES('$name','$mobile','$email','$address','$message','$product')"); /* SEND EMAIL */ $to = "devsingh263136@gmail.com"; $subject = "New Product Enquiry"; $body = " New Enquiry Received Product : $product Name : $name Mobile : $mobile Email : $email Address : $address Message : $message "; $headers = "From: info@nainitalfloweritech.com\r\n"; $headers .= "Reply-To: $email\r\n"; mail($to,$subject,$body,$headers); /* WHATSAPP MESSAGE */ $whatsapp_number = "917060634909"; // apna whatsapp number $whatsapp_message = urlencode( "New Enquiry Received Product: $product Name: $name Mobile: $mobile Email: $email Address: $address Message: $message" ); $whatsapp_url = "https://wa.me/".$whatsapp_number."?text=".$whatsapp_message; /* REDIRECT TO WHATSAPP */ echo "<script> alert('Enquiry Sent Successfully'); window.location='$whatsapp_url'; </script>"; ?>
Ukuran: 1.2 KB