ad.php - Redirect php with 10 seconds html delay

XMAN

Active member
Joined
Jul 12, 2021
Messages
19,648
Reaction score
43
Points
38
ad.php - Redirect php with 10 seconds html delay #1
A php file that will load a html for 10 seconds and redirects the user to the final url page.

How to execute
Copy the code below and save as ad.php

Code:

$url = $_GET["url"];

// ad here, add html between ""; that will be display for 10 seconds
echo "";

sleep(10);
header('Location: $url');
exit;

?>

To call the file
Code:
/ad.php?url=http://example.com
 
Top