<?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>Create A Website &#187; php</title>
	<atom:link href="http://www.createwebsite.info/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.createwebsite.info</link>
	<description>yet another undecorated wordpress blog about web development</description>
	<lastBuildDate>Wed, 02 Jun 2010 00:26:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Setting up a scheduled event using the WordPress &#8220;Cron&#8221; functionality</title>
		<link>http://www.createwebsite.info/setting-up-a-scheduled-event-using-the-wordpress-cron-functionality/</link>
		<comments>http://www.createwebsite.info/setting-up-a-scheduled-event-using-the-wordpress-cron-functionality/#comments</comments>
		<pubDate>Fri, 08 May 2009 01:07:51 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/setting-up-a-scheduled-event-using-the-wordpress-cron-functionality/</guid>
		<description><![CDATA[The function reference for wp_schedule_event provides code examples for creating a plugin using WordPress&#8217; &#8220;Cron&#8221; or scheduling functionality. Hopefully this saves someone the few minutes it took for me to find this &#8211; pretty much everything you need to know!]]></description>
			<content:encoded><![CDATA[<p>The function reference for <a href="http://codex.wordpress.org/Function_Reference/wp_schedule_event">wp_schedule_event</a> provides code examples for creating a plugin using WordPress&#8217; &#8220;Cron&#8221; or scheduling functionality. </p>
<p>Hopefully this saves someone the few minutes it took for me to find this &#8211; pretty much everything you need to know!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/setting-up-a-scheduled-event-using-the-wordpress-cron-functionality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tip for Setting up Apache, MySQL and PHP on Vista</title>
		<link>http://www.createwebsite.info/tip-for-setting-up-apache-mysql-and-php-on-vista/</link>
		<comments>http://www.createwebsite.info/tip-for-setting-up-apache-mysql-and-php-on-vista/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 09:47:55 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/tip-for-setting-up-apache-mysql-and-php-on-vista/</guid>
		<description><![CDATA[Just setup a PHP/MySQL development server on my Vista-based laptop. Here is a good rundown of setting up a VAMP (Vista, Apache, MySQL, PHP) server from Devshed: Creating a VAMP The other thing to know, which this article skipped, is that you should run your text editor as administrator when editing the config files. If [...]]]></description>
			<content:encoded><![CDATA[<p>Just setup a PHP/MySQL development server on my Vista-based laptop.</p>
<p>Here is a good rundown of setting up a VAMP (Vista, Apache, MySQL, PHP) server from Devshed:<br />
<a href="http://www.devshed.com/c/a/Apache/Creating-a-VAMP-Vista-Apache-MySQL-PHP-Setup/">Creating a VAMP</a></p>
<p>The other thing to know, which this article skipped, is that you should run your text editor as administrator when editing the config files. If you don&#8217;t do this you won&#8217;t be editing the correct file (only your Users version of it which isn&#8217;t actually used by the system).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/tip-for-setting-up-apache-mysql-and-php-on-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful PHP Tools + Development Lessons from the PHP Masters</title>
		<link>http://www.createwebsite.info/useful-php-tools/</link>
		<comments>http://www.createwebsite.info/useful-php-tools/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 01:24:24 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/useful-php-tools/</guid>
		<description><![CDATA[Just came across a couple of great PHP-related articles. 50 Extremely Useful PHP Tools It is a great list of PHP tools including: Debugging tools, Testing and Optimization Tools, Documentation Tools, Security Tools, Image Manipulation and Graphs, PHP Code Beautifiers, Version-Control Systems, PHP Online Tools and Resources, PHP Development Frameworks, IDEs and Editors, Firefox Add-Ons, [...]]]></description>
			<content:encoded><![CDATA[<p>Just came across a couple of great PHP-related articles.</p>
<p><a href="http://www.smashingmagazine.com/2009/01/20/50-extremely-useful-php-tools/">50 Extremely Useful PHP Tools</a></p>
<p>It is a great list of PHP tools including: Debugging tools, Testing and Optimization Tools, Documentation Tools, Security Tools, Image Manipulation and Graphs, PHP Code Beautifiers, Version-Control Systems, PHP Online Tools and Resources, PHP Development Frameworks, IDEs and Editors, Firefox Add-Ons, and a bunch of useful useful extensions, utilities and classes.</p>
<p><a href="http://nettuts.com/articles/10-principles-of-the-php-masters/">10 Principles of the PHP Masters</a></p>
<p>Definitely worth a read for anyone doing PHP development regardless of the level. Here is the list</p>
<ol>
<li>Use PHP Only When You Need it &#8211; Rasmus Lerdorf</li>
<li>Use Many Tables With PHP and MYSQL for Scalability &#8211; Matt Mullenweg</li>
<li>Never, ever trust your users &#8211; Dave Child</li>
<li>Invest in PHP Caching &#8211; Ben Balbo</li>
<li>Speed up PHP Development with an IDE, Templates and Snippets &#8211; Chad Kieffer</li>
<li>Make Better Use of PHP&#8217;s Filter Functions &#8211; Joey Sochacki</li>
<li>Use a PHP Framework &#8211; Josh Sharp</li>
<li>Don&#8217;t use a PHP Framework &#8211; Rasmus Lerdorf</li>
<li>Use Batch Processing &#8211; Jack D. Herrington</li>
<li>Turn on Error Reporting Immediately &#8211; David Cummings</li>
</ol>
<p>I especially liked the discussion of 7 and 8.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/useful-php-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Presentation by Manuel Lemos (PHPClasses.org) on Email Deliverability</title>
		<link>http://www.createwebsite.info/presentation-by-manuel-lemos-phpclassesorg-on-email-deliverability/</link>
		<comments>http://www.createwebsite.info/presentation-by-manuel-lemos-phpclassesorg-on-email-deliverability/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 01:37:34 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[best practice]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/presentation-by-manuel-lemos-phpclassesorg-on-email-deliverability/</guid>
		<description><![CDATA[Had a bit of a break from posting while I have been travelling with work. Back now and so should be posting a bit more regularly. Found this great presentation today on Slideshare by Manuel Lemos of PHPClasses.org: &#8220;Sending E-mail that reaches the destination using PHP&#8221;. It provides a basic overview of email protocols and [...]]]></description>
			<content:encoded><![CDATA[<p>Had a bit of a break from posting while I have been travelling with work. Back now and so should be posting a bit more regularly.</p>
<p>Found this great presentation today on Slideshare by Manuel Lemos of <a href="">PHPClasses.org</a>:<br />
&#8220;Sending E-mail that reaches the destination using PHP&#8221;. </p>
<div style="width:425px;text-align:left" id="__ss_963917"><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=sendingemailthatreachesthedestination-1233189801092735-2&#038;stripped_title=sending-email-that-reaches-the-destination-presentation" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=sendingemailthatreachesthedestination-1233189801092735-2&#038;stripped_title=sending-email-that-reaches-the-destination-presentation" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></div>
<p>It provides a basic overview of email protocols and systems and covers best practices to ensure email gets through, including specific reference to PHP classes he wrote. The <a href="http://www.phpclasses.org/browse/package/9.html">MIME Email Message Sending PHP Class</a> is really useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/presentation-by-manuel-lemos-phpclassesorg-on-email-deliverability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Send SMS notifications from your Web Application</title>
		<link>http://www.createwebsite.info/send-sms-notifications-from-your-web-application/</link>
		<comments>http://www.createwebsite.info/send-sms-notifications-from-your-web-application/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 18:17:23 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/send-sms-notifications-from-your-web-application/</guid>
		<description><![CDATA[A few years ago I started using Clickatell as a way to send SMS messages from different applications I built. Getting a message to notify you of particular events (&#8220;you received an order&#8221;, &#8220;something isn&#8217;t working right&#8221;) allows you to respond in a timely manner. I have one web-based application that monitors various websites I [...]]]></description>
			<content:encoded><![CDATA[<p>A few years ago I started using <a href="http://www.clickatell.com/">Clickatell</a> as a way to send SMS messages from different applications I built. Getting a message to notify you of particular events (&#8220;you received an order&#8221;, &#8220;something isn&#8217;t working right&#8221;) allows you to respond in a timely manner.</p>
<p>I have one web-based application that monitors various websites I work on and I get a downtime notification via SMS any time a site is down. I have also integrated SMS with osCommerce to send order notifications including the contents of the order. This is great for monitoring a low volume sideline store. There are lots of applications for this of course.</p>
<p>I have used Aleksandar Markovic&#8217;s <a href="http://www.phpclasses.org/browse/package/1452.html">Clickatell SMS API</a> for a number of years. It supports CURL and fopen for the HTTP request and is very easy to integrate into your application.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/send-sms-notifications-from-your-web-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GZIP compression not supported by WordPress 2.5+ (and what to do)</title>
		<link>http://www.createwebsite.info/gzip-compression-not-supported-by-wordpress-25-and-what-to-do/</link>
		<comments>http://www.createwebsite.info/gzip-compression-not-supported-by-wordpress-25-and-what-to-do/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 11:19:41 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/gzip-compression-not-supported-by-wordpress-25-and-what-to-do/</guid>
		<description><![CDATA[I noticed that the GZIP compression option was no longer there in WordPress after version 2.5. This is recommended to be performed by the server now using mod_deflate. If you don&#8217;t have access to mod_deflate, i.e. if you are on a uncooperative shared host, you can use this method using .htaccess &#8230; Speed Up Your [...]]]></description>
			<content:encoded><![CDATA[<p>I noticed that the GZIP compression option was no longer there in WordPress after version 2.5. This is recommended to be performed by the server now using <a href="http://httpd.apache.org/docs/2.0/mod/mod_deflate.html">mod_deflate</a>.</p>
<p>If you don&#8217;t have access to mod_deflate, i.e. if you are on a uncooperative shared host, you can use this method using .htaccess &#8230;<br />
<a href="http://mattsblog.ca/2008/04/07/speed-up-your-blog-using-zlib/">Speed Up Your Blog Using ZLIB</a></p>
<p>If that doesn&#8217;t work you may be on a phpSuExec server. Create a file called php.ini in the root of your WordPress install with the following contents &#8230;</p>
<p>zlib.output_compression = On</p>
<p>You can test here:<br />
<a href="http://www.gidnetwork.com/tools/gzip-test.php">http://www.gidnetwork.com/tools/gzip-test.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/gzip-compression-not-supported-by-wordpress-25-and-what-to-do/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modifying WordPress Rewrite Rules &#8211; small problem + solution</title>
		<link>http://www.createwebsite.info/modifying-wordpress-rewrite-rules-small-problem-solution/</link>
		<comments>http://www.createwebsite.info/modifying-wordpress-rewrite-rules-small-problem-solution/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 17:05:48 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/modifying-wordpress-rewrite-rules-small-problem-solution/</guid>
		<description><![CDATA[add_filter('rewrite_rules_array','yourawesomefunction'); I had to look at the WordPress core code to work this out &#8211; thought I was going nuts. If you apply new rewrite rules using the rewrite_rules_array filter you need to ensure that you refresh the rewrite rules that WordPress has stored in a hidden option. You do this by simply resaving the [...]]]></description>
			<content:encoded><![CDATA[<p><code>add_filter('rewrite_rules_array','yourawesomefunction');</code></p>
<p>I had to look at the WordPress core code to work this out &#8211; thought I was going nuts. If you apply new rewrite rules using the rewrite_rules_array filter you need to ensure that you refresh the rewrite rules that WordPress has stored in a hidden option. You do this by simply resaving the Permalink Structure under the Options menu in the admin area of your WP install. </p>
<p>Not immediately obvious that this would be required, but makes sense that they generate the rules and store them at this point.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/modifying-wordpress-rewrite-rules-small-problem-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Implementing Free Geolocation with PHP Using Maxmind&#8217;s GeoLite Country</title>
		<link>http://www.createwebsite.info/implementing-free-geolocation-with-php-using-maxminds-geolite-country/</link>
		<comments>http://www.createwebsite.info/implementing-free-geolocation-with-php-using-maxminds-geolite-country/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 15:58:21 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/implementing-free-geolocation-with-php-using-maxminds-geolite-country/</guid>
		<description><![CDATA[Need to serve up different content for people from different countries? Or track users by country? Or make a site more usable by providing options relevant to a particular country? I recently had a small programming task which required pre-selection of a country field based on the visitor&#8217;s country. Maxmind offers a free Geolocation database, [...]]]></description>
			<content:encoded><![CDATA[<p>Need to serve up different content for people from different countries? Or track users by country? Or make a site more usable by providing options relevant to a particular country? I recently had a small programming task which required pre-selection of a country field based on the visitor&#8217;s country. </p>
<p>Maxmind offers a free Geolocation database, <a href="http://www.maxmind.com/app/geolitecountry">GeoLite Country</a> which allows lookup of country from an IP. They claim it to be 99.3% accurate. They have a paid version that is more accurate. They also offer other databases, including one to lookup a city from an IP. The database is available as CSV data or in binary format. The binary format is very easy to implement as they provide<a href="http://www.maxmind.com/app/api"> APIs in a variety of languages</a>. I used their <a href="http://www.maxmind.com/app/php">PHP API</a>. There are code samples to get things going quickly.</p>
<p>I used their PHP class which was the easiest to implement. Simply upload the class file and binary file and require the class file. The calls are simple and the lookup is fast. Very easy to implement.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/implementing-free-geolocation-with-php-using-maxminds-geolite-country/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Amazon&#8217;s Seller Central SOAP API</title>
		<link>http://www.createwebsite.info/amazons-seller-central-soap-api/</link>
		<comments>http://www.createwebsite.info/amazons-seller-central-soap-api/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 00:29:53 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[amazon]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[rants]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/amazons-seller-central-soap-api/</guid>
		<description><![CDATA[Very disappointing experience working with Amazon.com&#8217;s Seller Central APIs. Their documentation is frankly very bad. Undocumented and incorrectly documented aspects will make the curve to get this working unnecassarily steep. Their support is not responsive. The forums are not overly helpful although you can see similar issues coming up. Disappointing for such a large and [...]]]></description>
			<content:encoded><![CDATA[<p>Very disappointing experience working with Amazon.com&#8217;s Seller Central APIs. Their documentation is frankly very bad. Undocumented and incorrectly documented aspects will make the curve to get this working unnecassarily steep. Their support is not responsive. The forums are not overly helpful although you can see similar issues coming up. Disappointing for such a large and groundbreaking web-based company, especially as they are looking to promote their Web Services infrastructure to developers. </p>
<p>The comments in this article are very accurate of my thoughts/experience implementing Amazon&#8217;s Seller Central SOAP API using PHP (they are using Java) &#8230;</p>
<blockquote><p>My time getting to the &#8216;hello world&#8217; stage on this interface was measured in days vs minutes for pretty much every other system I have worked with.</p></blockquote>
<p><a href="http://www.entraspan.com/blog/amazon.html">Good notes on implementing Amazon&#8217;s Seller Central SOAP API</a></p>
<p>That article should help anyone regardless of the particular language they are using to do this. It helped me with one important final aspect that was undocumented by Amazon.</p>
<p>For more specific notes on doing this with PHP check out the last chapter of this book &#8230;</p>
<p><a href="http://www.awsbook.com/">The Web Developer&#8217;s Guide To Amazon E-Commerce Service</a></p>
<p>A couple of key things in there will overcome issues with the particular way the Amazon SOAP server works. There will still be problems &#8211; but that will get you much of the way.</p>
<p>Note: don&#8217;t waste your time with Amazon AIM. As the article above mentions, unless you have an old account migrated from Amazon&#8217;s Marketplace system it will only work to download reports &#8211; it will not allow adding or updating products.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/amazons-seller-central-soap-api/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Great Article on Unicode and Character Sets</title>
		<link>http://www.createwebsite.info/great-article-on-unicode-and-character-sets/</link>
		<comments>http://www.createwebsite.info/great-article-on-unicode-and-character-sets/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 23:41:56 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/great-article-on-unicode-and-character-sets/</guid>
		<description><![CDATA[It is easier as a developer who deals with English 99.9% of the time to overlook this stuff &#8211; especially in PHP &#8211; until you open and try to manipulate a bunch of .txt file not even thinking about the variety of Unicode formats. Found this rather enlightening &#8230; The Absolute Minimum Every Software Developer [...]]]></description>
			<content:encoded><![CDATA[<p>It is easier as a developer who deals with English 99.9% of the time to overlook this stuff &#8211; especially in PHP &#8211; until you open and try to manipulate a bunch of .txt file not even thinking about the variety of Unicode formats. Found this rather enlightening &#8230;</p>
<p><a href="http://www.joelonsoftware.com/articles/Unicode.html">The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)</a></p>
<p>Good for any PHP coder to read, especially as the documentation on this stuff at PHP.net is a bit on the lean side.</p>
<p><strong>Update:</strong< here is another useful article <a href="http://www.phpwact.org/php/i18n/charsets">Character Sets / Character Encoding Issues</a> from WACT with lots of PHP-specific information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/great-article-on-unicode-and-character-sets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing out OpenX &#8211; PHP-based Ad delivery</title>
		<link>http://www.createwebsite.info/testing-out-openx-php-based-ad-delivery/</link>
		<comments>http://www.createwebsite.info/testing-out-openx-php-based-ad-delivery/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 03:55:24 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/testing-out-openx-php-based-ad-delivery/</guid>
		<description><![CDATA[I have a couple of sites I want to run ads on and just installed open-source ad server, OpenX. The installation was easy. I plan to run the first tests here &#8211; so watch out! I tried this out years ago as PHPAdsNew. New name and new product really. My first impressions are good. Will [...]]]></description>
			<content:encoded><![CDATA[<p>I have a couple of sites I want to run ads on and just installed open-source ad server, <a href="http://www.openx.org/">OpenX</a>. The installation was easy. I plan to run the first tests here &#8211; so watch out!</p>
<p>I tried this out years ago as PHPAdsNew. New name and new product really. My first impressions are good. Will post how I go once I get into it some more.</p>
<p>Here is a walkthrough of setting up a campaign &#8230;</p>
<div style="width:425px;text-align:left" id="__ss_267132"><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=qsg-ys-revision-1203091910637230-4"/><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=qsg-ys-revision-1203091910637230-4" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;"><a href="http://www.slideshare.net/?src=embed"><img src="http://static.slideshare.net/swf/logo_embd.png" style="border:0px none;margin-bottom:-5px" alt="SlideShare"/></a> | <a href="http://www.slideshare.net/openads/qsg-ys-revision-267132?src=embed" title="View Qsg   Ys Revision on SlideShare">View</a> | <a href="http://www.slideshare.net/upload?src=embed">Upload your own</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/testing-out-openx-php-based-ad-delivery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Generating Barcodes with PHP</title>
		<link>http://www.createwebsite.info/generating-barcodes-with-php/</link>
		<comments>http://www.createwebsite.info/generating-barcodes-with-php/#comments</comments>
		<pubDate>Wed, 14 May 2008 08:10:27 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/generating-barcodes-with-php/</guid>
		<description><![CDATA[Note: if you are going to use the barcode class I mention check out the comments from Zech below. He found a bug see below for the translation of the barcode PHP Classes is always my first stop when looking for PHP code, no matter how advanced (or easy to be honest). I have recently [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Note: if you are going to use the barcode class I mention check out the comments from Zech below. He found a bug</strong></p>
<div align="center"><img src='http://www.createwebsite.info/wp-content/uploads/2008/05/barcode.png' alt='barcode example' /><br /><em style="font-size:smaller;">see below for the translation of the barcode</em></div>
<p><a href="http://www.phpclasses.org/">PHP Classes</a> is always my first stop when looking for PHP code, no matter how advanced (or easy to be honest). </p>
<p>I have recently been working on a shopping cart system and implementing barcode generation, as well as allowing a barcode scanner be used as an input device to speed up aspects of order management and data entry.</p>
<p>There are a number of barcode generation classes at PHP Classes. Harish Chauhan&#8217;s <a href="http://www.phpclasses.org/browse/package/2441.html">Barcode Class</a> has been very useful. His class supports a number of barcode standards and allows generation at various sizes. There is a simple form provided to allow generation of barcodes and demonstrate the features of the class. </p>
<p>I will update this when I have finished all the functionality.</p>
<p>The barcode scanner arrives in the morning!</p>
<p>Oh &#8211; and the barcode above says &#8220;www.createwebsite.info&#8221; in the code128 format.</p>
<p>UPDATE: here it is with the font uploaded for the text!</p>
<div align="center"><img src='http://www.createwebsite.info/wp-content/uploads/2008/05/barcode2.png' alt='a barcode example with the text embedded' /></div>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/generating-barcodes-with-php/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Having problems importing a large MySQL database? Try this &#8230;</title>
		<link>http://www.createwebsite.info/problem-importing-large-mysql-database/</link>
		<comments>http://www.createwebsite.info/problem-importing-large-mysql-database/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 07:02:34 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/problem-importing-large-mysql-database/</guid>
		<description><![CDATA[Bigdump is a PHP script that staggers the import of a large MySQL dump. It processes a small chunk and then refreshes. This continues until the database is fully imported. This is great for hosts that don&#8217;t give you access to ssh or who place restrictions on file uploads or server execution times. The only [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ozerov.de/bigdump.php">Bigdump</a> is a PHP script that staggers the import of a large MySQL dump. It processes a small chunk and then refreshes. This continues until the database is fully imported. This is great for hosts that don&#8217;t give you access to ssh or who place restrictions on file uploads or server execution times. </p>
<p>The only thing to configure is the database host, user, and password. Simply upload the dump file to the same directory as the bigdump file (use FTP or the built-in uploader) and then process that file. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/problem-importing-large-mysql-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reasons for switching back to PHP from Ruby on Rails &#8211; one perspective &#8230;</title>
		<link>http://www.createwebsite.info/php-from-rails/</link>
		<comments>http://www.createwebsite.info/php-from-rails/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 23:38:18 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/7-reasons-i-switched-back-to-php-after-2-years-on-rails/</guid>
		<description><![CDATA[Great article by the developer of CD Baby on changing back to PHP after working with Ruby on Rails. Not a diss on Rails &#8211; he just states several reasons why he found it easier to return to PHP. Good perspective.read more &#124; digg story]]></description>
			<content:encoded><![CDATA[<p>Great article by the developer of CD Baby on changing back to PHP after working with Ruby on Rails. Not a diss on Rails &#8211; he just states several reasons why he found it easier to return to PHP. Good perspective.<br/><br/><a href="http://www.oreillynet.com/ruby/blog/2007/09/7_reasons_i_switched_back_to_p_1.html">read more</a> | <a href="/programming/7_Reasons_I_Switched_Back_to_PHP_After_2_Years_on_Rails_2">digg story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/php-from-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Save yourself some work: important PHP classes/libraries/projects for developers</title>
		<link>http://www.createwebsite.info/important-php-classeslibraries-for-developers/</link>
		<comments>http://www.createwebsite.info/important-php-classeslibraries-for-developers/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 12:04:36 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/important-php-classeslibraries-for-developers/</guid>
		<description><![CDATA[From sending mail with attachments to fetching content via RSS to sending a trackback &#8211; a list of common coding tasks that is solved with good existing code.read more &#124; digg story One they didn&#8217;t mention and that I use all the time is Manuel Lemos&#8217; HTTP Protocol Client &#8211; complete with lots of examples!]]></description>
			<content:encoded><![CDATA[<p>From sending mail with attachments to fetching content via RSS to sending a trackback &#8211; a list of common coding tasks that is solved with good existing code.<br/><br/><a href="http://www.webdigity.com/index.php/topic,7333.0.10+projects+every+php+developer+should+use.html">read more</a> | <a href="/programming/10_projects_every_PHP_developer_should_know">digg story</a></p>
<p>One they didn&#8217;t mention and that I use all the time is Manuel Lemos&#8217; <a href="http://www.phpclasses.org/browse/package/3.html">HTTP Protocol Client</a> &#8211; complete with lots of examples!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/important-php-classeslibraries-for-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP and MySQL Optimization</title>
		<link>http://www.createwebsite.info/php-and-mysql-optimization/</link>
		<comments>http://www.createwebsite.info/php-and-mysql-optimization/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 02:19:15 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/php-and-mysql-optimization/</guid>
		<description><![CDATA[A list featuring a few very simple tips for optimizing php/mysql applications &#8230;read more &#124; digg story]]></description>
			<content:encoded><![CDATA[<p>A list featuring a few very simple tips for optimizing php/mysql applications &#8230;<br/><br/><a href="http://www.dublish.com/articles/10.html">read more</a> | <a href="/programming/Simple_Optimization_for_PHP_and_MySQL">digg story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/php-and-mysql-optimization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Security Presentation</title>
		<link>http://www.createwebsite.info/php-security-presentation/</link>
		<comments>http://www.createwebsite.info/php-security-presentation/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 02:11:09 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/php-security-presentation/</guid>
		<description><![CDATA[&#124; View &#124; Upload your own]]></description>
			<content:encoded><![CDATA[<div style="width:425px;text-align:left" id="__ss_108018"><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=php-security3895"/><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=php-security3895" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;"><a href="http://www.slideshare.net/?src=embed"><img src="http://static.slideshare.net/swf/logo_embd.png" style="border:0px none;margin-bottom:-5px" alt="SlideShare"/></a> | <a href="http://www.slideshare.net/manugoel2003/php-security?src=embed" title="View 'PHP Security' on SlideShare">View</a> | <a href="http://www.slideshare.net/upload?src=embed">Upload your own</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/php-security-presentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List of Web Development Cheat Sheets</title>
		<link>http://www.createwebsite.info/list-of-web-development-cheat-sheets/</link>
		<comments>http://www.createwebsite.info/list-of-web-development-cheat-sheets/#comments</comments>
		<pubDate>Sun, 16 Mar 2008 09:13:18 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/list-of-web-development-cheat-sheets/</guid>
		<description><![CDATA[Great list of links to web development cheat sheets covering Javascript, CSS, HTML/XHTML, AJAX, Colors, Microformats, Browser Compatability, and XML.read more &#124; digg story]]></description>
			<content:encoded><![CDATA[<p>Great list of links to web development cheat sheets covering Javascript, CSS, HTML/XHTML, AJAX, Colors, Microformats, Browser Compatability, and XML.<br/><br/><a href="http://www.realsoftwaredevelopment.com/2007/08/ultimate-web-de.html">read more</a> | <a href="/design/Ultimate_Web_Development_Cheat_Sheets">digg story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/list-of-web-development-cheat-sheets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Application Security for PHP</title>
		<link>http://www.createwebsite.info/web-application-security-for-php/</link>
		<comments>http://www.createwebsite.info/web-application-security-for-php/#comments</comments>
		<pubDate>Sat, 15 Mar 2008 23:19:34 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/web-application-security-for-php/</guid>
		<description><![CDATA[Very good resource on common security concerns for web applications relating to application design and development. Web Application Security]]></description>
			<content:encoded><![CDATA[<p>Very good resource on common security concerns for web applications relating to application design and development.<br />
<a href="http://www.phpwact.org/security/web_application_security">Web Application Security</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/web-application-security-for-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speeding up PHP Code</title>
		<link>http://www.createwebsite.info/speeding-up-php-code/</link>
		<comments>http://www.createwebsite.info/speeding-up-php-code/#comments</comments>
		<pubDate>Sat, 15 Mar 2008 15:14:28 +0000</pubDate>
		<dc:creator>create a website</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.createwebsite.info/speeding-up-php-code/</guid>
		<description><![CDATA[40 tips to optimize PHP code &#8211; for example &#8220;Error suppression with @ is very slow.&#8221; and &#8220;$row[’id’] is 7 times faster than $row[id]&#8220;.read more &#124; digg story]]></description>
			<content:encoded><![CDATA[<p>40 tips to optimize PHP code &#8211; for example &#8220;Error suppression with @ is very slow.&#8221; and &#8220;$row[’id’] is 7 times faster than $row[id]&#8220;.<br/><br/><a href="http://reinholdweber.com/?p=3">read more</a> | <a href="/programming/40_Tips_for_optimizing_your_php_Code">digg story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.createwebsite.info/speeding-up-php-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
