<?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 Shinytype</title>
	<atom:link href="http://www.shinytype.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shinytype.com</link>
	<description>Custom Code Development &#38; Insight</description>
	<lastBuildDate>Thu, 19 Jan 2012 12:00:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on CodeIgniter: PHP time To MySQL datetime Helper by Mark</title>
		<link>http://www.shinytype.com/php/codeigniter-php-time-to-mysql-datetime-helper/comment-page-1/#comment-550</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Thu, 19 Jan 2012 12:00:07 +0000</pubDate>
		<guid isPermaLink="false">http://shinytype.com/?p=197#comment-550</guid>
		<description>Just used it on my &lt;a href=&quot;http://www.promosquare.com&quot; rel=&quot;nofollow&quot;&gt;site&lt;/a&gt;! Great help. Saved me at least 30 min of coding. Cheers mate!</description>
		<content:encoded><![CDATA[<p>Just used it on my <a href="http://www.promosquare.com" rel="nofollow">site</a>! Great help. Saved me at least 30 min of coding. Cheers mate!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Jolicloud and WiFi (Broadcom) by Shinrow</title>
		<link>http://www.shinytype.com/general-computing/jolicloud-and-wifi-broadcom/comment-page-1/#comment-530</link>
		<dc:creator>Shinrow</dc:creator>
		<pubDate>Mon, 05 Dec 2011 13:02:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.shinytype.com/?p=241#comment-530</guid>
		<description>Thanks for sharing this ! I had problem with my Broadcom card and now, thanks to you, it works ! :D</description>
		<content:encoded><![CDATA[<p>Thanks for sharing this ! I had problem with my Broadcom card and now, thanks to you, it works ! <img src='http://www.shinytype.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CodeIgniter: PHP time To MySQL datetime Helper by Dave</title>
		<link>http://www.shinytype.com/php/codeigniter-php-time-to-mysql-datetime-helper/comment-page-1/#comment-248</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Wed, 09 Feb 2011 22:22:40 +0000</pubDate>
		<guid isPermaLink="false">http://shinytype.com/?p=197#comment-248</guid>
		<description>Good point. I think I use that conversion snippet so often that I didn&#039;t think twice about it. Chalk it up to verbosity, I suppose! :)</description>
		<content:encoded><![CDATA[<p>Good point. I think I use that conversion snippet so often that I didn&#8217;t think twice about it. Chalk it up to verbosity, I suppose! <img src='http://www.shinytype.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CodeIgniter: PHP time To MySQL datetime Helper by Bram Van der Sype</title>
		<link>http://www.shinytype.com/php/codeigniter-php-time-to-mysql-datetime-helper/comment-page-1/#comment-198</link>
		<dc:creator>Bram Van der Sype</dc:creator>
		<pubDate>Wed, 12 Jan 2011 13:00:36 +0000</pubDate>
		<guid isPermaLink="false">http://shinytype.com/?p=197#comment-198</guid>
		<description>Interesting read. I was wondering: why do you use date(&#039;U&#039;, strtotime($date)) and not just strtotime($date)? After all, strtotime also returns a Unix timestamp.</description>
		<content:encoded><![CDATA[<p>Interesting read. I was wondering: why do you use date(&#8216;U&#8217;, strtotime($date)) and not just strtotime($date)? After all, strtotime also returns a Unix timestamp.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Upload Files To A MySQL Database With PHP by Dave</title>
		<link>http://www.shinytype.com/php/upload-files-to-a-mysql-database-with-php/comment-page-1/#comment-30</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Tue, 15 Jun 2010 21:53:20 +0000</pubDate>
		<guid isPermaLink="false">http://shinytype.com/?p=46#comment-30</guid>
		<description>Thanks Jeremy, I hadn&#039;t looked into it yet! I&#039;m definitely going to play with it and possibly expand upon this article :)</description>
		<content:encoded><![CDATA[<p>Thanks Jeremy, I hadn&#8217;t looked into it yet! I&#8217;m definitely going to play with it and possibly expand upon this article <img src='http://www.shinytype.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Upload Files To A MySQL Database With PHP by Jeremy Cook</title>
		<link>http://www.shinytype.com/php/upload-files-to-a-mysql-database-with-php/comment-page-1/#comment-29</link>
		<dc:creator>Jeremy Cook</dc:creator>
		<pubDate>Tue, 15 Jun 2010 17:17:25 +0000</pubDate>
		<guid isPermaLink="false">http://shinytype.com/?p=46#comment-29</guid>
		<description>Thanks for the article, very interesting. Have you had a look at the PDO extension for database access? If you use a prepared statement you can bind a file handle to a parameter and when the statement is executed PDO will automatically read the data from the file into the database (assuming the column has a suitable data type such as a blob). You can also do a similiar thing in a select statement where you bind a variable to a column in the resultset. There&#039;s more information at http://ca.php.net/manual/en/pdo.lobs.php (but note the comment on the bug in PDO in reading binary data from the database).</description>
		<content:encoded><![CDATA[<p>Thanks for the article, very interesting. Have you had a look at the PDO extension for database access? If you use a prepared statement you can bind a file handle to a parameter and when the statement is executed PDO will automatically read the data from the file into the database (assuming the column has a suitable data type such as a blob). You can also do a similiar thing in a select statement where you bind a variable to a column in the resultset. There&#8217;s more information at <a href="http://ca.php.net/manual/en/pdo.lobs.php" rel="nofollow">http://ca.php.net/manual/en/pdo.lobs.php</a> (but note the comment on the bug in PDO in reading binary data from the database).</p>
]]></content:encoded>
	</item>
</channel>
</rss>

