 |
|
Snippet Name: Browser sniffer/detector
Description: Simple code that displays the HTTP_USER_AGENT of the client.
Comment: (none)
Language: PHP
Highlight Mode: PHP
Last Modified: March 01st, 2009
|
<?PHP
$useragent = $_SERVER ['HTTP_USER_AGENT'];
ECHO "<b>Your User Agent is</b>: " . $useragent;
?> |
|
|
|
|
|