If you want to identify which browser is visiting your site then this code will produce the agent being used.
1 2 3 4 5 6 7 8 |
<?php echo $_SERVER['HTTP_USER_AGENT'] . "\n\n"; $browser = get_browser(null, true); print_r($browser); ?> |