Is there a way for me to link my php form to a confirmation page php?
Is there a way for me to link my php form to a confirmation page php?
php confirm box | php submit form to database and email | php confirm delete popup | php confirmation popup | php contact us form with database | confirm box in javascript with yes no option in php | simple php contact form to send email & storing in mysql database
php confirm box | php submit form to database and email | php confirm delete popup | php confirmation popup | php contact us form with database | confirm box in javascript with yes no option in php | simple php contact form to send email & storing in mysql database
php confirm box | php submit form to database and email | php confirm delete popup | php confirmation popup | php contact us form with database | confirm box in javascript with yes no option in php | simple php contact form to send email & storing in mysql database
php confirm box | php submit form to database and email | php confirm delete popup | php confirmation popup | php contact us form with database | confirm box in javascript with yes no option in php | simple php contact form to send email & storing in mysql database
php confirm box | php submit form to database and email | php confirm delete popup | php confirmation popup | php contact us form with database | confirm box in javascript with yes no option in php | simple php contact form to send email & storing in mysql database
php confirm box | php submit form to database and email | php confirm delete popup | php confirmation popup | php contact us form with database | confirm box in javascript with yes no option in php | simple php contact form to send email & storing in mysql database php confirm box php submit form to database and email php confirm delete popup php confirmation popup php contact us form with database confirm box in javascript with yes no option in php simple php contact form to send email & storing in mysql database
Share
<?php
if(isset($_POST['submit'])){
// Fetching variables of the form
$name = $_POST['name'];
$email = $_POST['email'];
if($name !=''&& $email !=''&& $contact !='')
{
// To redirect form on a particular page
header("Location:https://www.example.com/success.php/");
}
else { ?>
<span>
<?php echo "Please fill all fields.";?>
</span>
<?php } } ?>