Posted by Toby Inkster on 10/24/05 09:56
windandwaves wrote:
> Is there a way in PHP to send the stylesheet in advance
For Mozilla...
<?php
if ($is_mozilla)
{
header("Link: <http://www.example.org/style.css>; REL=stylesheet");
sleep(1);
}
?>
right at the top of the page. (Write your own code to detect Mozilla.)
--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ http://tobyinkster.co.uk/contact
[Back to original message]
|