|
Posted by Michael Fesser on July 27, 2008, 7:24 am
Please log in for more thread options .oO(I V)
>On Fri, 25 Jul 2008 11:05:26 -0700, jsd219 wrote:
>> <style type="text/css" media="all">
>> <!--
>> @import url("css/style.php");
>> -->
>> </style>
>>
>> i have tried everything but i can't seem to make the style.php file get
>> the page id so my code will work.
>
>What happens with:
>
>> <style type="text/css" media="all">
>> <!--
>> @import url("css/style.php?pgID=<?php echo $pgID ?>");
>> -->
>> </style>
Better:
<style type="text/css" media="all">
@import url("css/style.php?pgID=<?php echo $pgID ?>");
</style>
Or use a 'link' element instead.
Micha
|