i don' tsee any problems. you can also use dynamic style sheets like
style_sheet.php
PHP Code:
<?php
header('Content-Type: text/css');
?>
.text{color:black;}
this way you can also store user preferneces in database and then retirve them and use them in one style sheet which is dynamically changing with each diffferent user. something like
style_sheet.php
PHP Code:
<?php
header('Content-Type: text/css');
// mysql_connect() here
// mysql_query() here
$color = $row['color'];
?>
.text{color:<?php echo $color;?>;}
i saw PHPMyAdmin doing that and i like it.(not the database part)
hope this helps
Bookmarks