-1

I am trying to add the ability to let specific users change their style sheet to one of my pre determined styles using PHP and cookies. I have found some articles on this but they are all very old does anyone have an up to date tutorial that works well?

4

1 回答 1

1

嗨,我曾经这样做是为了更改男性和女性用户之间的 css 和 favicon

<?php if($_SESSION['gender'] == 'male')
{ ?>
    <link rel="stylesheet" href="includes/male_style.css" type="text/css" media="screen" />
    <link href="includes/male_images/favicon.ico" rel="icon" type="image/x-icon" />
<?php 
} 
else
{ ?>
    <link rel="stylesheet" href="includes/female_style.css" type="text/css" media="screen" />
    <link href="includes/female_images/favicon.ico" rel="icon" type="image/x-icon" />
<?php
} ?>  

希望这对您有所帮助。

于 2012-03-06T23:07:20.570 回答