Av@Tech
Learner
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?
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 } } ?>