Sarah
June 10, 2021
You can use PHP build-in function to redirect() a user to a specific web page.
Let's check the following example to understand how this function actually works.
<?php
header("Location: https://www.texinterest.com/");
exit();
?>
0
0