This is a collection of really useful and handy PHP code snippets. You can share your code snippet through "Post a snippet" page if you think it may be useful for others. We keep adding new snippets all the time !
<?php
$useragent = $_SERVER ['HTTP_USER_AGENT'];
echo "<b>Your User Agent is</b>: " . $useragent;
?>