Posted by Ben Lincoln (F7EFC8C9 – FD) on Feb 08
Hi David.
When I tried to reproduce it using code hosted on one of my domains, I
tried three variations of what I assumed at the time the PHP code from
the original was:
<?php
usleep(3000000);
header(“Location: http://www.dailymail.co.uk/");
die();
?>
<?php
sleep(3);
header(“Location: http://www.dailymail.co.uk/");
die();
?>
<?php
sleep(10);
header(“Location: http://www.dailymail.co.uk/");
die();…