ad.php - Redirect php with 10 seconds html delay 09-17-2020, 06:23 PM
#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
To call the file
How to execute
Copy the code below and save as ad.php
Code:
<?php
$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
(This post was last modified: 09-17-2020, 06:24 PM by hacxx.)