开发者

Using Multiple Images with Favicon

开发者 https://www.devze.com 2022-12-17 20:10 出处:网络
I was wondering whether it was possible to use Favicon in the following manner. I have 2 types of users. Users from Company A and users from Company B. When a company A user logs into the website, I w

I was wondering whether it was possible to use Favicon in the following manner. I have 2 types of users. Users from Company A and users from Company B. When a company A user logs into the website, I would like them to see Company A's icon/logo in the URL and TAB areas.... However if another user from Company B logs into that same website, they would see Companies B icon/logo开发者_如何学Python.

I am not even sure if this can be done but any help and suggestions would be greatly appreciated.


You can supply a favicon by using a link tag in the head. Putting something like the following in the head should work:

<?php
$icon = 'companya.ico';

if($companyb) {
    $icon = 'companyb.ico';
}
?>
<link rel="shortcut icon" type="image/vnd.microsoft.icon" href="<?php echo $icon; ?>" />
0

精彩评论

暂无评论...
验证码 换一张
取 消