Hi,
I have a script who generate CSS files.
<?
header('Cache-Control: public, no-cache, must-revalidate');
header('Pragma: no-cache');
header('Content-type: text/css');
$GC=getGraphic();
$body_background=$GC->body_background;
$rep_fond=$GC->rep_fond;
?>
/* FEUILLE DE STYLES I-MAJ
Style : MGR2
Fichier : MGR2.css
Date : 18-01-2005
Solstys : PB
*/
/* GENERIQUE */
BODY { background-color: <?=$body_background?>; font-family: Arial, Helvetica, sans-serif; COLOR:#4D4D4D}
TD { FONT-SIZE: 11px; font-family:Arial, Helvetica, sans-serif}
p { font-size:12px}
A{ COLOR:#1B598E; text-decoration: none; font-family: Arial, Helvetica, sans-serif}
A.noir { COLOR:#000000 }
A.blanc { COLOR:#FFFFFF }
A:hover { COLOR:#2884D7; text-decoration: none; font-family: Arial, Helvetica, sans-serif}
....
?>
This script is called by web pages
<html>
<header>
<link rel='stylesheet' href='/css/graphics/getCss.php' type='text/css'>
...
</header>
....
</html>
It works fine with Firefox but it seams the file it is not always loaded with Internet Explorer.
There are no errors in my http logs.
Thank you for your help