Menu

Add Topic

programming

waiting answer July 28, 2021

How to Make a Redirect in PHP

Answers
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

Please Login to Post the answer

Leave an Answer