Detect Browser with PHP
Show Plain Text »
- <?php
- $useragent = $_SERVER['HTTP_USER_AGENT'];
- echo "<b>Your User Agent is</b>: ".$useragent;
- ?>