Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


ad.php - Redirect php with 10 seconds html delay filter_list
Author
Message
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:
<?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.)

Reply





Messages In This Thread
ad.php - Redirect php with 10 seconds html delay - by hacxx - 09-17-2020, 06:23 PM



Users browsing this thread: 1 Guest(s)