|
Server IP : 2a02:4780:8:613:0:1a7d:6e18:10 / Your IP : 216.73.217.87 Web Server : LiteSpeed System : Linux nl-srv-web513.main-hosting.eu 5.14.0-503.34.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Mar 27 06:00:50 EDT 2025 x86_64 User : u444427800 ( 444427800) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u444427800/domains/sahyogwelfarefoundation.com/public_html/admin/gallery/../ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php include "connect.php";
if (isset($_POST["submit"])) {
$name = $_POST['name'];
$mobile = $_POST['mobile'];
$email = $_POST['email'];
$dob = $_POST['dob'];
$qualification = $_POST['qualification'];
$current_location = $_POST['current_location'];
$city = $_POST['city'];
$state = $_POST['state'];
$pincode = $_POST['pincode'];
$create_on=time();
// $redirect_url = $_POST['redirect_url'];
$result = $conn->query("INSERT INTO `become_volunteer`(`name`, `mobile`, `email`, `dob`, `qualification`, `current_location`, `city`, `state`, `pincode`, `create_on`) VALUES (
'$name',
'$mobile',
'$email',
'$dob',
'$qualification',
'$current_location',
'$city',
'$state',
'$pincode',
'$create_on'
)");
$result;
$array_message = array();
if ($result) {
}
?>
<script>
// window.history.back();
// location.replace('../thank_you.php');
</script>
<?php
header("location: ../thank_you.php");
}else{
}
?>