On Mon, 16 Aug 2004 07:27:38 GMT, <a style='text-decoration: underline;' href="http://links.i6networks.com" target="_blank">http://links.i6networks.com</a>
<SaveWorldFromAids.DeleteThis@alexa.com> wrote:
> I need to delay something either an image or a table from loading for 2-5
> seconds. So far I have not find a good method.
>
> I need the rest of the page, even the codes after the delayed image, to
> be displayed in real time.
Easy[1], with PHP's sleep() command. Want to delay a table? Write a
PHP-parsed javascript file with document.write()s writing the table, then
put a sleep(5); command in the middle of it.
Same thing with images. Write a PHP image serving script, then put a
sleep(5); command before sending the output to the browser.
Grey
[1] Assuming you have a basic grasp of PHP. I'm not writing the script
for you, sorry.
--
The technical axiom that nothing is impossible sinisterly implies the
pitfall corollory that nothing is ridiculous.
- <a style='text-decoration: underline;' href="http://www.greywyvern.com" target="_blank">http://www.greywyvern.com</a> - Orca Knowledgebase: Completely CSS styleable
Knowledgebase/FAQ system<!-- ~MESSAGE_AFTER~ -->
>> Stay informed about: How to Delay an Image/HTML loading?