<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.1" -->
<rss version="0.92">
<channel>
	<title>PHP Tutorials and code</title>
	<link>http://readytousesolutions.com/phpblog</link>
	<description>PHP tutorials - Examples of the most useful scripts</description>
	<lastBuildDate>Sat, 28 Nov 2009 20:15:11 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>PHP Mini Sites Cms: template system and rewrite rules</title>
		<description><![CDATA[In this fourth post we&#8217;ll have to actually do something useful with our code. Simply add the following at the end of the previous script.


if($found)
{// set up variables with content
 $title=$items[0];
 $url=$items[1];
 $post=$items[2];
 $tags=$items[3];
 $description=$items[4];
 $author=$items[5];
 $date=$items[6];
}

else

{ // if we get here there was a 404 error either for malformed url or because we couldn't................]]></description>
		<link>http://readytousesolutions.com/phpblog/php-mini-sites-cms-templat/</link>
			</item>
	<item>
		<title>Hostgator Coupon September October 2009</title>
		<description><![CDATA[Are you looking for an Hostgator Coupon code? If so, act right now as I don&#8217;t know how long this offer will be available. Enter &#8216;autumn&#8217; without quotes in the Coupon Code field to get 20% off your hosting plan. As of today (september 2009, but should be okay for october as well) it works,................]]></description>
		<link>http://readytousesolutions.com/phpblog/hostgator-coupon-september-october-2009/</link>
			</item>
	<item>
		<title>Remove item from array remove null values</title>
		<description><![CDATA[Say we want to drop a value from an array, this is simple: just unset it!

unset($myarray[13]);

Sometimes however we may want to perform some more complex clean ups. Such as if we have just exploded an URL for url rewriting, and want to get rid of the null array items placed where the slashes were.
First approach................]]></description>
		<link>http://readytousesolutions.com/phpblog/remove-item-from-array-remove-null-values/</link>
			</item>
	<item>
		<title>Simple Flat File CMS in PHP &#8211; Part 3</title>
		<description><![CDATA[In this third post, we&#8217;ll have to actually do something useful with our code. Simply add the following at the end of the previous script.


if($found)
{// set up variables with content
 $title=$items[0];
 $url=$items[1];
 $post=$items[2];
 $tags=$items[3];
 $description=$items[4];
 $author=$items[5];
 $date=$items[6];
}

else

{ // if we get here there was a 404 error either for malformed url or because we couldn't................]]></description>
		<link>http://readytousesolutions.com/phpblog/simple-flat-file-cms-in-php-part-3/</link>
			</item>
	<item>
		<title>Flatfile PHP CMS tutorial &#8211; Part 2: the code</title>
		<description><![CDATA[Time to define the structure for our flatfile CMS or Blog, and see the PHP code needed to parse it. ]]></description>
		<link>http://readytousesolutions.com/phpblog/flatfile-php-cms-tutorial-part-2-the-code/</link>
			</item>
	<item>
		<title>Flat file PHP CMS or Blog, simple and customizable</title>
		<description><![CDATA[Need a flatfile CMS or Blog, running low on resources, yet expandable and with support for custom themes and SEO urls? This tutorial series will show you how to quickly build it, with little effort.]]></description>
		<link>http://readytousesolutions.com/phpblog/simple-flat-file-php-cms-or-blog/</link>
			</item>
	<item>
		<title>ZEND Optimizer</title>
		<description><![CDATA[PHP is an interpreted language, this is a quick run down on Interpreters and Compilers.]]></description>
		<link>http://readytousesolutions.com/phpblog/zend-optimizer/</link>
			</item>
	<item>
		<title>International characters in PHP</title>
		<description><![CDATA[Your feed displays funky characters? European accents turn into a mess? Properly encoding UTF8 characters is the solution. ]]></description>
		<link>http://readytousesolutions.com/phpblog/international-characters-in-php/</link>
			</item>
	<item>
		<title>PHP Tutorial : Validate email address &#8211; simple way with filter_var() function</title>
		<description><![CDATA[While browsing php.net without any scope I discovered a very cute &#38; nice way to replace the usual regular expression email checking thing.
That way is via filter_var() php function which does the things 10 times faster :

&#60;?php
$email = "someone@example.com";

if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
echo "Invalid email address";
}
?&#62;

]]></description>
		<link>http://readytousesolutions.com/phpblog/php-tutorial-validate-email-address-simple-way-with-filter_var-function/</link>
			</item>
	<item>
		<title>PHP Tutorials : Rename a mysql table</title>
		<description><![CDATA[If you want to rename a mysql table via php you just need an extremely simple query like the following one:

&#60;?php
//include db credentials

mysql_query("rename table TheOldName to TheNewName");
?&#62;

]]></description>
		<link>http://readytousesolutions.com/phpblog/php-tutorials-rename-a-mysql-table/</link>
			</item>
</channel>
</rss>
