<?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 for Danny Herran</title>
	<atom:link href="http://www.dannyherran.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dannyherran.com</link>
	<description>A little bit of PHP, MySQL, jQuery, JavaScript, XHTML and CSS</description>
	<lastBuildDate>Mon, 20 May 2013 21:01:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Facebook PHP SDK and CodeIgniter for basic user authentication by Yasir Hussain</title>
		<link>http://www.dannyherran.com/2011/02/facebook-php-sdk-and-codeigniter-for-basic-user-authentication/comment-page-3/#comment-3201</link>
		<dc:creator>Yasir Hussain</dc:creator>
		<pubDate>Mon, 20 May 2013 21:01:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannyherran.com/?p=185#comment-3201</guid>
		<description><![CDATA[Thanks for such a nice and up to date article. helped me save alot of hours :)]]></description>
		<content:encoded><![CDATA[<p>Thanks for such a nice and up to date article. helped me save alot of hours <img src='http://www.dannyherran.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fixing UTF-8 encoding problems on MySQL queries with PHP by Kurt</title>
		<link>http://www.dannyherran.com/2010/08/fixing-utf-8-encoding-problems-on-mysql-queries-on-php/comment-page-1/#comment-3172</link>
		<dc:creator>Kurt</dc:creator>
		<pubDate>Mon, 22 Apr 2013 15:03:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannyherran.com/?p=73#comment-3172</guid>
		<description><![CDATA[For mysqli the following line did the trick for me:
$mysqli-&gt;set_charset(&quot;utf8&quot;);

HTH

Kurt]]></description>
		<content:encoded><![CDATA[<p>For mysqli the following line did the trick for me:<br />
$mysqli-&gt;set_charset(&#8220;utf8&#8243;);</p>
<p>HTH</p>
<p>Kurt</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detect mobile browser/user agent with PHP (iPad, iPhone, Android, BlackBerry, WP7 and others) by Andrew Reed</title>
		<link>http://www.dannyherran.com/2011/02/detect-mobile-browseruser-agent-with-php-ipad-iphone-blackberry-and-others/comment-page-2/#comment-3150</link>
		<dc:creator>Andrew Reed</dc:creator>
		<pubDate>Fri, 15 Mar 2013 16:09:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannyherran.com/?p=149#comment-3150</guid>
		<description><![CDATA[I&#039;d use a switch instead of ifs &amp; elseifs]]></description>
		<content:encoded><![CDATA[<p>I&#8217;d use a switch instead of ifs &amp; elseifs</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detect mobile browser/user agent with PHP (iPad, iPhone, Android, BlackBerry, WP7 and others) by Danny Herran</title>
		<link>http://www.dannyherran.com/2011/02/detect-mobile-browseruser-agent-with-php-ipad-iphone-blackberry-and-others/comment-page-2/#comment-3139</link>
		<dc:creator>Danny Herran</dc:creator>
		<pubDate>Thu, 14 Feb 2013 15:46:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannyherran.com/?p=149#comment-3139</guid>
		<description><![CDATA[What you see is a desktop version of the site. I&#039;ve been to lazy to develop a mobile theme for my own site :). Your idea sounds great. It would require some testing because some Android tablets have the same user agent as mobile phones, but thank you for your input. I would certainly take it in consideration for the next update of this function.]]></description>
		<content:encoded><![CDATA[<p>What you see is a desktop version of the site. I&#8217;ve been to lazy to develop a mobile theme for my own site <img src='http://www.dannyherran.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Your idea sounds great. It would require some testing because some Android tablets have the same user agent as mobile phones, but thank you for your input. I would certainly take it in consideration for the next update of this function.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detect mobile browser/user agent with PHP (iPad, iPhone, Android, BlackBerry, WP7 and others) by BGN</title>
		<link>http://www.dannyherran.com/2011/02/detect-mobile-browseruser-agent-with-php-ipad-iphone-blackberry-and-others/comment-page-2/#comment-3138</link>
		<dc:creator>BGN</dc:creator>
		<pubDate>Wed, 13 Feb 2013 21:32:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannyherran.com/?p=149#comment-3138</guid>
		<description><![CDATA[Hi, I&#039;m viewing this site using blackberry 9900: and I would like to to believe that the version of the site that I&#039;m viewing is a desktop version or tablet version. I think on your function you should devide your function into 3 deciders or four. One for desktop, two for tablets, 3 and 4 for mobiles, mobiles having to sub-heads, full touch screens and normal mobiles. And again. I think it is important to allocate you if statements very well, and if a deviced was first detected as a windows desktop while it is a mobile inside that if statement use a second if stament to see if it&#039;s not a mobile device and if it is redirect it to the 3 and 4th if statement using OOP class. That&#039;s the nice thing about OOP PHP]]></description>
		<content:encoded><![CDATA[<p>Hi, I&#8217;m viewing this site using blackberry 9900: and I would like to to believe that the version of the site that I&#8217;m viewing is a desktop version or tablet version. I think on your function you should devide your function into 3 deciders or four. One for desktop, two for tablets, 3 and 4 for mobiles, mobiles having to sub-heads, full touch screens and normal mobiles. And again. I think it is important to allocate you if statements very well, and if a deviced was first detected as a windows desktop while it is a mobile inside that if statement use a second if stament to see if it&#8217;s not a mobile device and if it is redirect it to the 3 and 4th if statement using OOP class. That&#8217;s the nice thing about OOP PHP</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detect mobile browser/user agent with PHP (iPad, iPhone, Android, BlackBerry, WP7 and others) by Adam</title>
		<link>http://www.dannyherran.com/2011/02/detect-mobile-browseruser-agent-with-php-ipad-iphone-blackberry-and-others/comment-page-2/#comment-3131</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Tue, 29 Jan 2013 03:08:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannyherran.com/?p=149#comment-3131</guid>
		<description><![CDATA[Thanks for the script.]]></description>
		<content:encoded><![CDATA[<p>Thanks for the script.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detect mobile browser/user agent with PHP (iPad, iPhone, Android, BlackBerry, WP7 and others) by Adit</title>
		<link>http://www.dannyherran.com/2011/02/detect-mobile-browseruser-agent-with-php-ipad-iphone-blackberry-and-others/comment-page-2/#comment-3130</link>
		<dc:creator>Adit</dc:creator>
		<pubDate>Tue, 29 Jan 2013 02:01:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannyherran.com/?p=149#comment-3130</guid>
		<description><![CDATA[Nice... thanks bro!]]></description>
		<content:encoded><![CDATA[<p>Nice&#8230; thanks bro!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Facebook PHP SDK and CodeIgniter for basic user authentication by ardi</title>
		<link>http://www.dannyherran.com/2011/02/facebook-php-sdk-and-codeigniter-for-basic-user-authentication/comment-page-3/#comment-3102</link>
		<dc:creator>ardi</dc:creator>
		<pubDate>Tue, 15 Jan 2013 11:22:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannyherran.com/?p=185#comment-3102</guid>
		<description><![CDATA[if my app Curl enabled can make this error solved??because my app curl is not enabled now??need answer :D]]></description>
		<content:encoded><![CDATA[<p>if my app Curl enabled can make this error solved??because my app curl is not enabled now??need answer <img src='http://www.dannyherran.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create thumbnails on the fly with CodeIgniter by Matthew</title>
		<link>http://www.dannyherran.com/2010/08/create-thumbnails-on-the-fly-with-codeigniter/comment-page-1/#comment-3101</link>
		<dc:creator>Matthew</dc:creator>
		<pubDate>Tue, 15 Jan 2013 09:52:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannyherran.com/?p=28#comment-3101</guid>
		<description><![CDATA[Hi,

I have copied and pasted this code as above but it does not work, I get a broken image on the page and I do not not a created thumb.  Can you please help?  I am using Codeigniter &gt;2]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have copied and pasted this code as above but it does not work, I get a broken image on the page and I do not not a created thumb.  Can you please help?  I am using Codeigniter &gt;2</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Facebook PHP SDK and CodeIgniter for basic user authentication by ardi</title>
		<link>http://www.dannyherran.com/2011/02/facebook-php-sdk-and-codeigniter-for-basic-user-authentication/comment-page-3/#comment-3095</link>
		<dc:creator>ardi</dc:creator>
		<pubDate>Fri, 11 Jan 2013 03:12:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.dannyherran.com/?p=185#comment-3095</guid>
		<description><![CDATA[any solution danny? how to make sure i&#039;m using sessions properly and app url is properly configured?]]></description>
		<content:encoded><![CDATA[<p>any solution danny? how to make sure i&#8217;m using sessions properly and app url is properly configured?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk

 Served from: www.dannyherran.com @ 2013-05-21 08:51:15 by W3 Total Cache -->