Thanks for taking the time to check out my online home. My Name is Sandeep Kadam, a Professional PHP Web developer from Pune. Feel free to contact me.
Browser Detection script in PHP
PHP code to detect browser name/version.
[code type=php] $useragent = $_SERVER [‘HTTP_USER_AGENT’]; echo “Your User Agent is: ” . $useragent; ?> [/code]