Forum Moderators: open
[2]
<?php
sleep(10);
?>
[/2] where '10' is 10 seconds.
Although you would have to change your page to .php from .html - a workaround is, if your server supports SSI (apache does), the you can have the 'sleep' code in an external file and then call it in...
that may work for you
However, you could make it look like there is a delay in the page loading (although I don't think this would satisfactorily test your application)... In the link to your page you are wanting to delay, you could instead call some JavaScript that waits a few seconds (setTimeout) before actually making the request for the new page. Or you could perhaps hide everything on the page with CSS and once the page has loaded (onload) and you've waited a few seconds, make everything visible to the user!?
Hhhhmmmm...