D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
ksclnmuac
/
www
/
web
/
Filename :
concode.php
back
Copy
<?php include("admin/connection.php"); $fname=$_POST['firstname']; $lname=$_POST['lastname']; $email=$_POST['email']; $mobile=$_POST['mobile']; $message=$_POST['message']; $query="insert into tbl_contact(fname,lname,email,mobile,message,date) values ('$fname','$lname','$email','$mobile','$message',now())"; mysqli_query($dbCon,$query); echo "<script> window.alert('You have successfully submitted your details. Admin will contact you soon!!! '); window.location.href='contact-us.php' </script>"; ?>