Subversion-Projekte lars-tiefland.content-management

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?
2
function client()
3
{
4
        global $HTTP_USER_AGENT;
5
        $ID="Netscape";
6
        if (preg_match ("/MSIE/i", $HTTP_USER_AGENT))  {$ID="Explorer";}
7
        if (preg_match ("/Opera/i", $HTTP_USER_AGENT)) {$ID="Opera";}
8
		return $ID;
9
}
10
?>