<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Made in Paté &#187; PHP</title>
	<atom:link href="http://djpate.com/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://djpate.com</link>
	<description>A do-it yourself blog</description>
	<lastBuildDate>Fri, 02 Dec 2011 14:12:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Using rowCount with the sqlite driver of PDO.</title>
		<link>http://djpate.com/2011/12/02/using-rowcount-with-the-sqlite-driver-of-pdo/</link>
		<comments>http://djpate.com/2011/12/02/using-rowcount-with-the-sqlite-driver-of-pdo/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 14:10:52 +0000</pubDate>
		<dc:creator>Christophe Verbinnen</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[0]]></category>
		<category><![CDATA[not working]]></category>
		<category><![CDATA[pdo]]></category>
		<category><![CDATA[rowcount]]></category>
		<category><![CDATA[sqlite]]></category>

		<guid isPermaLink="false">http://djpate.com/?p=440</guid>
		<description><![CDATA[If you are reading this post, you&#8217;re probably facing an issue with sqlite and pdo that prevents you from using the rowCount method on a PDOStatement instance. Apparently the new API of sqlite does not allow pdo to get this information. At work we faced this issue so I wanted to share it the web [...]]]></description>
		<wfw:commentRss>http://djpate.com/2011/12/02/using-rowcount-with-the-sqlite-driver-of-pdo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to generate a word docx from a template with PHP ?</title>
		<link>http://djpate.com/2011/05/18/how-to-generate-a-word-docx-from-a-template-with-php/</link>
		<comments>http://djpate.com/2011/05/18/how-to-generate-a-word-docx-from-a-template-with-php/#comments</comments>
		<pubDate>Wed, 18 May 2011 14:44:43 +0000</pubDate>
		<dc:creator>Christophe Verbinnen</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[docx]]></category>
		<category><![CDATA[generation]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[livedocx]]></category>
		<category><![CDATA[phplivedocx]]></category>
		<category><![CDATA[word]]></category>

		<guid isPermaLink="false">http://djpate.com/?p=427</guid>
		<description><![CDATA[Hey folks, A lot of clients of mine asked for docx generation in the past. The only solution that I knew of in PHP is the SOAP client phplivedocx. first of all It was kinda slow and I didn&#8217;t want to relly on a service and more importantly It was missing the &#8220;nested block&#8221; feature. [...]]]></description>
		<wfw:commentRss>http://djpate.com/2011/05/18/how-to-generate-a-word-docx-from-a-template-with-php/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>How to setup Xdebug on ubuntu 10.10</title>
		<link>http://djpate.com/2011/02/20/how-to-setup-xdebug-on-ubuntu-10-10/</link>
		<comments>http://djpate.com/2011/02/20/how-to-setup-xdebug-on-ubuntu-10-10/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 12:03:59 +0000</pubDate>
		<dc:creator>Christophe Verbinnen</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[pecl]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[xdebug]]></category>

		<guid isPermaLink="false">http://djpate.com/?p=372</guid>
		<description><![CDATA[Hello, I&#8217;ve been trying to figure out how to actually set up Xdebug on my php configuration but I never managed to get the &#8220;Styled&#8221; version of Xdebug. I finally figured out why so I decided to share it First install xdebug with pecl Then create a xdebug config file and add a link to [...]]]></description>
		<wfw:commentRss>http://djpate.com/2011/02/20/how-to-setup-xdebug-on-ubuntu-10-10/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to write a complete OAuth Provider in PHP5</title>
		<link>http://djpate.com/2011/01/13/how-to-write-a-complete-oauth-provider-in-php5/</link>
		<comments>http://djpate.com/2011/01/13/how-to-write-a-complete-oauth-provider-in-php5/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 14:02:38 +0000</pubDate>
		<dc:creator>Christophe Verbinnen</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[oauth]]></category>
		<category><![CDATA[pecl]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[provider]]></category>
		<category><![CDATA[service]]></category>

		<guid isPermaLink="false">http://djpate.com/?p=369</guid>
		<description><![CDATA[Today I&#8217;m going to talk about a subject that doesn&#8217;t have a lot of coverage on the web. There is a lot of tutorials about how to use OAuth authentication for twitter services or google &#38; such but there is not a lot of information on how to actually make your own oauth provider. Now [...]]]></description>
		<wfw:commentRss>http://djpate.com/2011/01/13/how-to-write-a-complete-oauth-provider-in-php5/feed/</wfw:commentRss>
		<slash:comments>73</slash:comments>
		</item>
		<item>
		<title>Dealing with Monster.com SOAP with PHP5</title>
		<link>http://djpate.com/2010/08/23/dealing-with-monster-com-soap-with-php5/</link>
		<comments>http://djpate.com/2010/08/23/dealing-with-monster-com-soap-with-php5/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 08:15:40 +0000</pubDate>
		<dc:creator>Christophe Verbinnen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[monster]]></category>
		<category><![CDATA[monster.com]]></category>
		<category><![CDATA[nusoap]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[soap]]></category>
		<category><![CDATA[soap class]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[xml.monster.com]]></category>

		<guid isPermaLink="false">http://djpate.com/?p=254</guid>
		<description><![CDATA[Recently I had to set up a system that would post a job offer to monster.com web service using SOAP. Once I made the script to generate the XML I started looking into the SOAP class that PHP5 provides but I soon started to feel the headache comming ! So I justed wanted to help [...]]]></description>
		<wfw:commentRss>http://djpate.com/2010/08/23/dealing-with-monster-com-soap-with-php5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add image tagging the facebook way !</title>
		<link>http://djpate.com/2009/09/01/image-tagging-facebook-like/</link>
		<comments>http://djpate.com/2009/09/01/image-tagging-facebook-like/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 21:33:27 +0000</pubDate>
		<dc:creator>Christophe Verbinnen</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[draggable]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[hi5]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery-ui]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[resizable]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[tagging]]></category>

		<guid isPermaLink="false">http://djpate.com/?p=114</guid>
		<description><![CDATA[Updated post here Today I want to show you how to make a image tagging function on your website. It works about the same way than facebook does (or a least the way it worked some times ago because I deleted my facebook account) Basicly you take an image and you &#8220;tag&#8221; people or stuff [...]]]></description>
		<wfw:commentRss>http://djpate.com/2009/09/01/image-tagging-facebook-like/feed/</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
		<item>
		<title>How to : Create a simple url shortener script is a few minutes</title>
		<link>http://djpate.com/2009/08/09/how-to-create-a-simple-url-shortener-script-is-a-few-minuts/</link>
		<comments>http://djpate.com/2009/08/09/how-to-create-a-simple-url-shortener-script-is-a-few-minuts/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 20:22:05 +0000</pubDate>
		<dc:creator>Christophe Verbinnen</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[regexp]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[short]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[tinyurl]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://djpate.com/?p=90</guid>
		<description><![CDATA[Hello all, First let&#8217;s explain the basics of what we are trying to do. We&#8217;ll build a script that will replace any type of url to a tiny url so it&#8217;s easier to post or be untraceable. For example this *long* google maps url http://maps.google.fr/maps?f=q&#038;source=s_q&#038;hl=fr&#038;geocode=&#038;q=white+house&#038;sll=46.75984,1.738281&#038;sspn=10.178118,28.54248&#038;ie=UTF8&#038;z=15&#038;iwloc=A could become http://your.site/v/12345 you can check it out here : [...]]]></description>
		<wfw:commentRss>http://djpate.com/2009/08/09/how-to-create-a-simple-url-shortener-script-is-a-few-minuts/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>How to : Pdf thumbnails with php</title>
		<link>http://djpate.com/2009/08/06/pdf-thumbnails-with-php/</link>
		<comments>http://djpate.com/2009/08/06/pdf-thumbnails-with-php/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 13:32:28 +0000</pubDate>
		<dc:creator>Christophe Verbinnen</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[imagemagick]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[thumb]]></category>
		<category><![CDATA[thumbnails]]></category>
		<category><![CDATA[upload]]></category>

		<guid isPermaLink="false">http://djpate.com/?p=81</guid>
		<description><![CDATA[Hello, I&#8217;ve just worked on something for a project of mine and I wanted to share this code with you. It&#8217;s nothing new but good to know&#8230; Ok so if you want to make a thumbnails of your php document you have to have imagemagick on your host and the permission to have some kind [...]]]></description>
		<wfw:commentRss>http://djpate.com/2009/08/06/pdf-thumbnails-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>form submit via Hidden iframe (A.K.A Fake Ajax)</title>
		<link>http://djpate.com/2009/05/24/form-submit-via-hidden-iframe-aka-fake-ajax/</link>
		<comments>http://djpate.com/2009/05/24/form-submit-via-hidden-iframe-aka-fake-ajax/#comments</comments>
		<pubDate>Sun, 24 May 2009 13:00:10 +0000</pubDate>
		<dc:creator>Christophe Verbinnen</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[fake ajax]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[upload]]></category>

		<guid isPermaLink="false">http://djpate.com/?p=39</guid>
		<description><![CDATA[Today, I wanna share with you a way to submit forms using a ajax look &#38; feel altought it&#8217;s not really ajax. The question you might ask is : why should I use this method instead of real ajax ? Well they&#8217;re is numereous answer to that but one good reason it that is doesnt [...]]]></description>
		<wfw:commentRss>http://djpate.com/2009/05/24/form-submit-via-hidden-iframe-aka-fake-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql Class for php5 using singleton</title>
		<link>http://djpate.com/2009/05/22/mysql-class-for-php5-using-singleton/</link>
		<comments>http://djpate.com/2009/05/22/mysql-class-for-php5-using-singleton/#comments</comments>
		<pubDate>Fri, 22 May 2009 14:29:00 +0000</pubDate>
		<dc:creator>Christophe Verbinnen</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[OOP]]></category>
		<category><![CDATA[singleton]]></category>

		<guid isPermaLink="false">http://djpate.com/?p=30</guid>
		<description><![CDATA[Hello again, I thought i&#8217;ll share another one of my little personal scripts with you guys. Here is the mysql class I use on most of my project, nothing fancy but does the work for what I need most of the time. Since it use Singleton you have to call it like that]]></description>
		<wfw:commentRss>http://djpate.com/2009/05/22/mysql-class-for-php5-using-singleton/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

