<?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>PHP Tutorial</title>
	<atom:link href="http://www.phpzag.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpzag.com</link>
	<description>PHP Tutorials and Articles</description>
	<lastBuildDate>Thu, 30 May 2013 16:52:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
<meta xmlns="http://www.w3.org/1999/xhtml" name="robots" content="noindex,follow" />
		<item>
		<title>How to convert .xsd file into array in PHP</title>
		<link>http://www.phpzag.com/how-to-convert-xsd-file-into-array-in-php/</link>
		<comments>http://www.phpzag.com/how-to-convert-xsd-file-into-array-in-php/#comments</comments>
		<pubDate>Thu, 30 May 2013 16:51:40 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3228</guid>
		<description><![CDATA[As we know that PHP has no direct function to convert .xsd(XML Schema Definition) file into associative array like XML file. So you have to  first convert .xsd file into xml then finally parse xml file into associative array. Below are few easy steps to convert .xsd file into associative array. Step 1: First load [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/how-to-convert-xsd-file-into-array-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modifying Node and Attribute Values using PHP</title>
		<link>http://www.phpzag.com/modifying-node-and-attribute-values-using-php/</link>
		<comments>http://www.phpzag.com/modifying-node-and-attribute-values-using-php/#comments</comments>
		<pubDate>Sun, 26 May 2013 15:10:21 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3223</guid>
		<description><![CDATA[Sometimes you want to alter the value of a node or an attribute in an xml document. You can use PHP&#8217;s SimpleXML to read the XML file, assign new values to elements or attribute and save the changes back to the file. view plaincopy to clipboardprint? &#60;?php $xml = simplexml_load_file(&#8220;data.xml&#8221;); /* Aletr value of a node */ $xml -&#62; weight = 3000; /* alter value of attribute &#60;weight units */ $xml -&#62;weight['units'] = [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/modifying-node-and-attribute-values-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting Multiple Headers in a PHP</title>
		<link>http://www.phpzag.com/setting-multiple-headers-in-a-php/</link>
		<comments>http://www.phpzag.com/setting-multiple-headers-in-a-php/#comments</comments>
		<pubDate>Fri, 24 May 2013 14:30:09 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3220</guid>
		<description><![CDATA[With PHP, you can send multiple HTTP headers with file_get_contents() . you can also send information such as HTTP_ACCEPT, HTTP_ACCEPT_LANGUAGE, and HTTP_CONNECTION with file_get_contents(). In this post, I have write a complete example code to set multiple headers; an Authorization header and a Content-Type header using PHP and make POST request using file_get_contents(). view plaincopy [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/setting-multiple-headers-in-a-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wrapping Text using PHP</title>
		<link>http://www.phpzag.com/wrapping-text-using-php/</link>
		<comments>http://www.phpzag.com/wrapping-text-using-php/#comments</comments>
		<pubDate>Wed, 01 May 2013 20:11:58 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3213</guid>
		<description><![CDATA[Sometimes we need to wrap text to exactly accommodate a certain width of text or allowing browsers to wrap text whenever required. You can use PHP&#8217;s wordwrap() function to wrap a string into new lines when it reaches a specific length. This function limits text display to a particular column size, thereby allowing precise control [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/wrapping-text-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5.5 beta 4 is now available</title>
		<link>http://www.phpzag.com/php-5-5-beta-4-is-now-available/</link>
		<comments>http://www.phpzag.com/php-5-5-beta-4-is-now-available/#comments</comments>
		<pubDate>Fri, 26 Apr 2013 05:04:45 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3209</guid>
		<description><![CDATA[The PHP development team announces the release of the 4th beta of PHP 5.5.0. This release fixes some bugs against beta 3 and cleans up some features. PHP 5.5.0 beta 4 is shipped with some bug fixes. Here is the list: Fixed bug #64677, execution operator &#8220; stealing surrounding arguments. Fixed bug #64342, ZipArchive::addFile() has [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-5-5-beta-4-is-now-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Swapping Array Keys and Values</title>
		<link>http://www.phpzag.com/swapping-array-keys-and-values/</link>
		<comments>http://www.phpzag.com/swapping-array-keys-and-values/#comments</comments>
		<pubDate>Sat, 13 Apr 2013 04:16:30 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3204</guid>
		<description><![CDATA[If you want interchange the keys and values of an associative array. It&#8217;s very easy, just use PHP&#8217;s array_flip() function which perform a very specialized task. It reverses the key-value relationship for all the elements of an associative array and returning a new array that is the mirror image of the original. Example: view plaincopy [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/swapping-array-keys-and-values/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Security</title>
		<link>http://www.phpzag.com/php-security/</link>
		<comments>http://www.phpzag.com/php-security/#comments</comments>
		<pubDate>Fri, 05 Apr 2013 10:30:39 +0000</pubDate>
		<dc:creator>Adrian Stolarski</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3197</guid>
		<description><![CDATA[When it comes to PHP, some 99% of amateur sites and 60-70% of all sites use the professional scripting language called PHP. But is it safe to use PHP? Does the implementation of the language not have any gaps that are critical to the operation of our applications? But remember that security problems do not [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with Image Metadata in PHP</title>
		<link>http://www.phpzag.com/working-with-image-metadata-in-php/</link>
		<comments>http://www.phpzag.com/working-with-image-metadata-in-php/#comments</comments>
		<pubDate>Wed, 27 Mar 2013 16:56:01 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3181</guid>
		<description><![CDATA[Sometimes you want to extract the descriptive information embedded in an image, such as the metadata or thumbnails placed in digital photos. For this, you can use PHP&#8217;s Exchangeable Image File Format (EXIF) functions. EXIF is a standard for storing descriptive metadata in image files, particularly JPEG and TIFF files. PHP&#8217;s exif_read_data() function can read [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/working-with-image-metadata-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protecting Your Public E-mail Address</title>
		<link>http://www.phpzag.com/protecting-your-public-e-mail-address/</link>
		<comments>http://www.phpzag.com/protecting-your-public-e-mail-address/#comments</comments>
		<pubDate>Sun, 17 Mar 2013 16:47:51 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3177</guid>
		<description><![CDATA[If you want to protect a publicly displayed email address from being captured by an e-mail address harvester. To protect the email address, you can manage the email address which is only read by human being but not recognized as a standard e-mail address to a program. For I have a written a simple php [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/protecting-your-public-e-mail-address/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting Between Relative and Absolute File Path</title>
		<link>http://www.phpzag.com/converting-between-relative-and-absolute-file-path/</link>
		<comments>http://www.phpzag.com/converting-between-relative-and-absolute-file-path/#comments</comments>
		<pubDate>Sat, 02 Mar 2013 16:13:14 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3170</guid>
		<description><![CDATA[To convert a relative path to an absolute file path, use PHP&#8217;s realpath() function. This function performs &#8220;path math&#8221; means translating all the relative locations in a path string to return a complete absolute path. If we pass &#8220;.&#8221; as parameter in below example view plaincopy to clipboardprint? &#60;?php $abs_path = realpath(&#8220;.&#8221;); echo $abs_path; ?&#62; [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/converting-between-relative-and-absolute-file-path/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Parsing File Paths with PHP</title>
		<link>http://www.phpzag.com/parsing-file-paths-with-php/</link>
		<comments>http://www.phpzag.com/parsing-file-paths-with-php/#comments</comments>
		<pubDate>Sat, 02 Mar 2013 15:57:15 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3168</guid>
		<description><![CDATA[If you want to extract the path, file name, or extension path from a file path. You can use PHP&#8217;s pathinfo() function to automatically split the file path into its individual components. Example code: view plaincopy to clipboardprint? &#60;?php $path=&#8220;/etc/sendmail.cf&#8221;; $data=pathinfo($path); print_r($data); ?&#62; &#60;?php&#60;br /&#62; $path=&#8221;/etc/sendmail.cf&#8221;;&#60;br /&#62; $data=pathinfo($path);&#60;br /&#62; print_r($data);&#60;br /&#62; ?&#62; Returned associative array: [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/parsing-file-paths-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove HTML Comments with PHP?</title>
		<link>http://www.phpzag.com/how-to-remove-html-comments-with-php/</link>
		<comments>http://www.phpzag.com/how-to-remove-html-comments-with-php/#comments</comments>
		<pubDate>Sat, 02 Mar 2013 05:46:27 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3165</guid>
		<description><![CDATA[I think when sending content to users, there is no reason for HTML commends to be sent to the users. It generally increases load time. You can easily remove unwanted comments from html content using PHP regex. You can use below PHP function: view plaincopy to clipboardprint? &#60;?php function removeComments($html = &#8221;) { return preg_replace(&#8216;/&#60;!&#8211;(.&#124;\s)*?&#8211;&#62;/&#8217;, &#8221;, [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/how-to-remove-html-comments-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to access .htaccess values?</title>
		<link>http://www.phpzag.com/how-to-access-htaccess-values/</link>
		<comments>http://www.phpzag.com/how-to-access-htaccess-values/#comments</comments>
		<pubDate>Sat, 02 Mar 2013 05:15:49 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3163</guid>
		<description><![CDATA[You know that you can get value entered by user with .htaccess pop-up? It&#8217;s actually very easy. You can use this: view plaincopy to clipboardprint? &#60;?php $_SERVER['REMOTE_USER']; ?&#62; &#60;?php&#60;br /&#62; $_SERVER['REMOTE_USER'];&#60;br /&#62; ?&#62; OR view plaincopy to clipboardprint? &#60;?php $_SERVER['HTTP_AUTH_USER']; ?&#62; &#60;?php&#60;br /&#62; $_SERVER['HTTP_AUTH_USER'];&#60;br /&#62; ?&#62;]]></description>
		<wfw:commentRss>http://www.phpzag.com/how-to-access-htaccess-values/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dealing With Common PHP Errors</title>
		<link>http://www.phpzag.com/dealing-with-common-php-errors/</link>
		<comments>http://www.phpzag.com/dealing-with-common-php-errors/#comments</comments>
		<pubDate>Sun, 24 Feb 2013 14:40:22 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3152</guid>
		<description><![CDATA[Working with PHP, we often face few common problem and errors related to PHP script such as white page of syntax error, unexpected errors, header already sent, Undefined index or Undefined offset, System time zone issue etc. In this article I have listed the most common PHP error or  problems when coding with PHP. With each problem, [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/dealing-with-common-php-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interview Questions and Answers for Freshers</title>
		<link>http://www.phpzag.com/php-interview-questions-and-answers-for-freshers/</link>
		<comments>http://www.phpzag.com/php-interview-questions-and-answers-for-freshers/#comments</comments>
		<pubDate>Sat, 16 Feb 2013 04:41:05 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[INTERVIEW QUESTIONS]]></category>
		<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3144</guid>
		<description><![CDATA[Here are common questions with answer that every fresher PHP programmer is expected to know, I will add few more questions with answers in coming days. Q- What is the difference between include and require Difference between require() and include() is that require() produces a FATAL ERROR if the file you want to include is [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-interview-questions-and-answers-for-freshers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display numbers with ordinal suffix using PHP</title>
		<link>http://www.phpzag.com/display-numbers-with-ordinal-suffix-using-php/</link>
		<comments>http://www.phpzag.com/display-numbers-with-ordinal-suffix-using-php/#comments</comments>
		<pubDate>Mon, 11 Feb 2013 19:01:27 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3142</guid>
		<description><![CDATA[Ordinal numbers are inclusive of the letters that appear after the number Eg. 1st, 2nd, 3rd, 4th etc. PHP already has a feature that will display this for you in it&#8217;s date handling functions. The below example display current date with suffix: view plaincopy to clipboardprint? &#60;?php echo date(&#8216;dS&#8217;); ?&#62; &#60;?php echo date(&#8216;dS&#8217;); ?&#62;&#60;br /&#62; will display this: [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/display-numbers-with-ordinal-suffix-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Function to set COLLATION on database fields of Mysql</title>
		<link>http://www.phpzag.com/function-to-set-collation-on-database-fields-of-mysql/</link>
		<comments>http://www.phpzag.com/function-to-set-collation-on-database-fields-of-mysql/#comments</comments>
		<pubDate>Sun, 03 Feb 2013 18:20:08 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3139</guid>
		<description><![CDATA[As a PHP developer, we sometimes need PHP functions or script that can change the default collation in all tables and fields in a database. Actually we often forget to set collation when create tables and fields in Mysql database. Here we have created a complete PHP function to search for tables in the active [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/function-to-set-collation-on-database-fields-of-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Read and write to remote files using PHP</title>
		<link>http://www.phpzag.com/read-and-write-to-remote-file-php/</link>
		<comments>http://www.phpzag.com/read-and-write-to-remote-file-php/#comments</comments>
		<pubDate>Thu, 31 Jan 2013 19:20:08 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3128</guid>
		<description><![CDATA[PHP strongly allow you to play with remote files. You can easily read content from remote files and also write them. For doing this, you just need to enable  allow_url_fopen in your php.ini file. By enabling it, you can use HTTP and FTP URLs with most of the functions that take a file name as a parameter.  Since  PHP [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/read-and-write-to-remote-file-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sharing PHP SESSION Variables between Multiple Subdomains</title>
		<link>http://www.phpzag.com/sharing-php-session-variables-between-multiple-subdomains/</link>
		<comments>http://www.phpzag.com/sharing-php-session-variables-between-multiple-subdomains/#comments</comments>
		<pubDate>Sat, 26 Jan 2013 21:09:45 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php session]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3124</guid>
		<description><![CDATA[As we know that the PHP session ids are saved in Cookies. To make a cookie available in all the sub-domains you need to assign it to the root domain. Then all the sub-domains will get the session id from cookie and PHP can find the session using passed session id. For implementing  above, you just need [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/sharing-php-session-variables-between-multiple-subdomains/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5.5.0 Alpha4 Development Preview Released</title>
		<link>http://www.phpzag.com/php-5-5-0-alpha4-development-preview-released/</link>
		<comments>http://www.phpzag.com/php-5-5-0-alpha4-development-preview-released/#comments</comments>
		<pubDate>Sat, 26 Jan 2013 20:27:47 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3118</guid>
		<description><![CDATA[The regular PHP updates are announced for PHP 5.5.0 Alpha4. The PHP development team have announced the release of PHP 5.5.0 Alpha4 with some bug fixes and added few new features. They also suggested to use this latest PHP version and also report if you found any bug in the bug tracking system. The PHP development team [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-5-5-0-alpha4-development-preview-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check a string starts with http using PHP</title>
		<link>http://www.phpzag.com/check-a-string-starts-with-http-using-php/</link>
		<comments>http://www.phpzag.com/check-a-string-starts-with-http-using-php/#comments</comments>
		<pubDate>Wed, 23 Jan 2013 17:17:58 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3116</guid>
		<description><![CDATA[Coding with PHP, We often needs to check if a string starts with http, https or ftp. If it doesn&#8217;t start with one of those We have to prepend the sting with http://. Here is a running PHP function to add http, https or ftp to sting. view plaincopy to clipboardprint? function prependHttp($url) { if (!preg_match(&#8220;~^(?:f&#124;ht)tps?://~i&#8221;, [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/check-a-string-starts-with-http-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check if a string starts with http using Javascript</title>
		<link>http://www.phpzag.com/check-if-a-string-starts-with-http-using-javascript/</link>
		<comments>http://www.phpzag.com/check-if-a-string-starts-with-http-using-javascript/#comments</comments>
		<pubDate>Wed, 23 Jan 2013 17:16:06 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3114</guid>
		<description><![CDATA[Working with Javascript sting, We often needs to check if a string starts with http, https or ftp. If it doesn&#8217;t start with one of those We have to prepend the sting with http://. Here is a running Javascript function to add http, https or ftp to sting. view plaincopy to clipboardprint? function prependHttp(url) { if [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/check-if-a-string-starts-with-http-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get an array of billing addresses and shipping addresses in Magento</title>
		<link>http://www.phpzag.com/get-an-array-of-billing-addresses-and-shipping-addresses-in-magento/</link>
		<comments>http://www.phpzag.com/get-an-array-of-billing-addresses-and-shipping-addresses-in-magento/#comments</comments>
		<pubDate>Mon, 21 Jan 2013 19:25:13 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3112</guid>
		<description><![CDATA[Sometimes we need an array of all shipping or billing addresses of those users who’s logged in the past. But Magento has no built in function to get an array of all shipping or billing addresses. However, you can do this by creating such an array by grabbing the address collection. Something likes this: view [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/get-an-array-of-billing-addresses-and-shipping-addresses-in-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Duplicate Data Issue with Custom Magento Collection</title>
		<link>http://www.phpzag.com/duplicate-data-issue-with-custom-magento-collection/</link>
		<comments>http://www.phpzag.com/duplicate-data-issue-with-custom-magento-collection/#comments</comments>
		<pubDate>Mon, 21 Jan 2013 18:35:18 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3108</guid>
		<description><![CDATA[We often face problem of duplicate data while working accessing custom Magento collection. For example the collection gets duplicated multiple times with the same result after adding an item such as $dataCollection-&#62;addItem($dataObject). Actually the issue arises when we add the same object to the collection each time. We need to create a unique Varien_Object for [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/duplicate-data-issue-with-custom-magento-collection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cross-Site Scripting Attacks (XSS)</title>
		<link>http://www.phpzag.com/cross-site-scripting-attacks-xss/</link>
		<comments>http://www.phpzag.com/cross-site-scripting-attacks-xss/#comments</comments>
		<pubDate>Sat, 19 Jan 2013 17:11:22 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3100</guid>
		<description><![CDATA[Cross-Site Scripting (XSS) is a type of security hole where a hacker attempts to inject client-side scripting into a web page that others are able to view. The attack could be as simple as an annoying alert window or as sophisticated as stealing a logged in user&#8217;s credentials commonly saved browser cookies. With a user&#8217;s [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/cross-site-scripting-attacks-xss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5.4.11 and PHP 5.3.21 released!</title>
		<link>http://www.phpzag.com/php-5-4-11-and-php-5-3-21-released/</link>
		<comments>http://www.phpzag.com/php-5-4-11-and-php-5-3-21-released/#comments</comments>
		<pubDate>Thu, 17 Jan 2013 19:39:29 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php release]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3096</guid>
		<description><![CDATA[The PHP development team have announced the immediate availability of PHP 5.4.11 and PHP 5.3.21. These releases fix about 10 bugs. Now you can upgrade your running php to PHP 5.4.11 and enjoy new php features and changes. PHP 5.4.11  with new features and bug fixes such as: Fixed bug #63762 (Sigsegv when Exception::$trace is [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-5-4-11-and-php-5-3-21-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Memory Leak Issue</title>
		<link>http://www.phpzag.com/php-memory-leak-issue/</link>
		<comments>http://www.phpzag.com/php-memory-leak-issue/#comments</comments>
		<pubDate>Thu, 17 Jan 2013 17:22:20 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3081</guid>
		<description><![CDATA[When processing a large number of records or calling objects with recursive references, a memory leak can occur causing PHP to run out of memory. PHP 5.3 has a garbage collector gc_enable() that can collect cyclic references. You can also avoid the memory leak issue by manually calling the destructors and unsetting the recursive ref [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-memory-leak-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5.5.0 Alpha3 released</title>
		<link>http://www.phpzag.com/php-5-5-0-alpha3-released/</link>
		<comments>http://www.phpzag.com/php-5-5-0-alpha3-released/#comments</comments>
		<pubDate>Thu, 10 Jan 2013 18:23:46 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php version]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3069</guid>
		<description><![CDATA[Regular PHP updates are released for PHP 5.5.0.  PHP development team announces the immediate availability of PHP 5.5.0 alpha3. The release carry the series of PHP 5.5.0. This release adds few features,  fix and  some bugs from alpha2. PHP 5.5.0 Alpha 3 comes with new features and improvements such as: Generator::throw() method New cURL functions [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-5-5-0-alpha3-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New features in PHP 5.4.0</title>
		<link>http://www.phpzag.com/new-features-in-php-5-4/</link>
		<comments>http://www.phpzag.com/new-features-in-php-5-4/#comments</comments>
		<pubDate>Thu, 10 Jan 2013 18:14:37 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php tutorial]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3063</guid>
		<description><![CDATA[PHP 5.4.0 offers a wide range of new features. The latest enhancements significantly improve its performance, while removing deprecated functionality, resulting in a dramatic optimization of the run-time environment. The some of the key new features include traits,  a shortened array syntax,  a built-in web server,  use of $this in closures,  class member access on instantiation,  &#60;?= [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/new-features-in-php-5-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; Understanding and Validating Integers</title>
		<link>http://www.phpzag.com/php-understanding-and-validating-integers/</link>
		<comments>http://www.phpzag.com/php-understanding-and-validating-integers/#comments</comments>
		<pubDate>Mon, 07 Jan 2013 17:49:46 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3059</guid>
		<description><![CDATA[We have often issues with the validation of integers. As PHP has it&#8217;s own functions such as is_int() or is_integer() for validating integers,  but sometimes these functions works and sometimes not.  Actually this is due to difference between integers and string type in PHP. So here we clear with the concept of integer and string [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-understanding-and-validating-integers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; multi-sort of associative array in PHP</title>
		<link>http://www.phpzag.com/multi-sort-of-associative-array-in-php/</link>
		<comments>http://www.phpzag.com/multi-sort-of-associative-array-in-php/#comments</comments>
		<pubDate>Sun, 06 Jan 2013 16:35:11 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php tutorial]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3054</guid>
		<description><![CDATA[This is a complete multi-sort example of associative array in PHP. We have first sorted an associative array by values in descending order then sorted an associative array by keys in ascending order. view plaincopy to clipboardprint? &#60;?php $asso_arr = Array ( &#8216;banana&#8217; =&#62; 2, &#8216;cherry&#8217; =&#62; 1, &#8216;orange&#8217; =&#62; 3, &#8216;grapefruit&#8217; =&#62; 1, &#8216;apple&#8217; =&#62; 1 ); $values = array_values($asso_arr); [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/multi-sort-of-associative-array-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP framework – Top most popular PHP frameworks of 2012</title>
		<link>http://www.phpzag.com/php-framework-%e2%80%93-top-most-popular-php-frameworks-of-2012/</link>
		<comments>http://www.phpzag.com/php-framework-%e2%80%93-top-most-popular-php-frameworks-of-2012/#comments</comments>
		<pubDate>Fri, 04 Jan 2013 19:07:20 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php framwork]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3042</guid>
		<description><![CDATA[PHP framework help you to develop clean and reusable code. It follows the MVC pattern, ensuring a clear separation of logic and presentation. But there is a much discussion all around because some prefer performance, some prefer better documentation, some prefer amount of built-in functions etc. This article is posted to show you the popularity [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-framework-%e2%80%93-top-most-popular-php-frameworks-of-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP &#8211;  safe way to hash password</title>
		<link>http://www.phpzag.com/php-safe-way-to-hash-password/</link>
		<comments>http://www.phpzag.com/php-safe-way-to-hash-password/#comments</comments>
		<pubDate>Fri, 04 Jan 2013 06:52:58 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php tutorial]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3037</guid>
		<description><![CDATA[As we know that password hashing is one of the most basic security considerations that must be made when designing any application that accepts passwords from users. Without hashing, any passwords that are stored in your application&#8217;s database can be stolen if the database is compromised, and then immediately used to compromise not only your [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-safe-way-to-hash-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; Best Way to Search Word in String</title>
		<link>http://www.phpzag.com/php-best-way-to-search-word-in-string/</link>
		<comments>http://www.phpzag.com/php-best-way-to-search-word-in-string/#comments</comments>
		<pubDate>Thu, 03 Jan 2013 17:03:30 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php tutorial]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3033</guid>
		<description><![CDATA[PHP has very a large inbuilt string functions library. Here we will scan a piece of text for the occurrence of certain word. If the string contains any of these words, the function should return TRUE. view plaincopy to clipboardprint? &#60;?php function searchWord($word, $string) { foreach ((array) $word as $w) { if (false !== strpos($string, $w)) return [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-best-way-to-search-word-in-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; Using regex to remove link but keep anchor text</title>
		<link>http://www.phpzag.com/php-using-regex-to-remove-link-but-keep-anchor-text/</link>
		<comments>http://www.phpzag.com/php-using-regex-to-remove-link-but-keep-anchor-text/#comments</comments>
		<pubDate>Tue, 01 Jan 2013 17:54:59 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php tutorial]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3029</guid>
		<description><![CDATA[Sometimes we need to remove anchors from html while displaying html content. You can easily remove links or anchors from a html content using PHP preg_replace with regex. Here is the complete code to remove anchors tags from a string. view plaincopy to clipboardprint? &#60;?php $str = &#8216;PHPZAG PHP &#60;a href=&#8221;http://www.phpzag.com/&#8221; title=&#8221;PHP&#8221;&#62;TUTORIALS&#60;/a&#62; AND ARTICLES.&#8217;; echo preg_replace(&#8216;#&#60;a.*?&#62;([^&#62;]*)&#60;/a&#62;#i&#8217;, &#8216;$1&#8242;, $str); ?&#62; &#60;?php&#60;br /&#62; [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-using-regex-to-remove-link-but-keep-anchor-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; Remove image tags from a html string with preg_replace</title>
		<link>http://www.phpzag.com/php-remove-image-tags-from-a-html-string-with-preg_replace/</link>
		<comments>http://www.phpzag.com/php-remove-image-tags-from-a-html-string-with-preg_replace/#comments</comments>
		<pubDate>Tue, 01 Jan 2013 17:35:46 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php tutorial]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=3023</guid>
		<description><![CDATA[With websites such as a forum, users often get the feeling that they can post all kinds of images which creates headache to administrator. But you can easily remove images from a html content using PHP preg_replace and some customized regular expression code. Here is the complete code to remove image tags from a html [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-remove-image-tags-from-a-html-string-with-preg_replace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 2013 &#8211; PHP developers can now build mobile apps for iOS and Android</title>
		<link>http://www.phpzag.com/php-2013-php-developers-can-now-build-mobile-apps-for-ios-and-android/</link>
		<comments>http://www.phpzag.com/php-2013-php-developers-can-now-build-mobile-apps-for-ios-and-android/#comments</comments>
		<pubDate>Sat, 29 Dec 2012 18:17:23 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[mobile apps]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php mobile apps]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2984</guid>
		<description><![CDATA[Now with the release of Zend Studio 10 which will let PHP developers to build native mobile apps right from the language that they know best. It&#8217;s very surprising news for those PHP developers, who until now have been shut out of the mobile app revolution because the apps for iPhone and iPad are coded in [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-2013-php-developers-can-now-build-mobile-apps-for-ios-and-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; Generate Automatic Smileys</title>
		<link>http://www.phpzag.com/php-generate-automatic-smileys/</link>
		<comments>http://www.phpzag.com/php-generate-automatic-smileys/#comments</comments>
		<pubDate>Sat, 29 Dec 2012 16:53:21 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php tutorial]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2979</guid>
		<description><![CDATA[We are very much familiar with smileys on Gmail and Facebook chat. We often express our emotions by pressing shift-colon and shift-backquote like &#8220;:)” during chat with our friends which displays a smiley images in place of characters. Below is complete PHP example code which allows you to automatically replace a smiley symbol character by [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-generate-automatic-smileys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; Remove an Item From a Comma Separated String</title>
		<link>http://www.phpzag.com/php-remove-an-item-from-a-comma-separated-string/</link>
		<comments>http://www.phpzag.com/php-remove-an-item-from-a-comma-separated-string/#comments</comments>
		<pubDate>Thu, 27 Dec 2012 16:49:59 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php tutorial]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2962</guid>
		<description><![CDATA[Sometimes we need to remove specific item from comma separated string. Here is a running PHP function to remove an item from a comma-separated string. The function will remove the selected item from the string and return the remaining parts of the string. view plaincopy to clipboardprint? &#60;?php function removeItemString($str, $item) { $parts = explode(&#8216;,&#8217;, $str); [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-remove-an-item-from-a-comma-separated-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add quotes to values in a string separated by a comma php</title>
		<link>http://www.phpzag.com/add-quotes-to-values-in-a-string-separated-by-a-comma-php/</link>
		<comments>http://www.phpzag.com/add-quotes-to-values-in-a-string-separated-by-a-comma-php/#comments</comments>
		<pubDate>Wed, 26 Dec 2012 17:54:16 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2958</guid>
		<description><![CDATA[Sometimes we need to add quotes to values in a string separated by comma. For example while using mysql FULLTEXT search, we need to use some kind of string like &#8216;pasta&#8217;,&#8217; tuna&#8217;,&#8217; eggs&#8217; OR finding big list of Ids from mysql such as WHERE item IN (&#8216;pasta&#8217;,&#8217; tuna&#8217;,&#8217; eggs&#8217;). Here in this post you have [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/add-quotes-to-values-in-a-string-separated-by-a-comma-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; Remove Repeated words in a String</title>
		<link>http://www.phpzag.com/php-remove-repeated-words-in-a-string/</link>
		<comments>http://www.phpzag.com/php-remove-repeated-words-in-a-string/#comments</comments>
		<pubDate>Mon, 24 Dec 2012 16:49:18 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2951</guid>
		<description><![CDATA[Usually we do remove duplicate words from a text using array functions etc, but it&#8217;s quite slow doing that way because of the size of the text. The fastest way to achieve the same result is PHP regex. You can remove duplicate words using PHP regular expressions with preg_replace. Below is a complete PHP example [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-remove-repeated-words-in-a-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP regex to validate a domain name</title>
		<link>http://www.phpzag.com/php-regex-to-validate-a-domain-name/</link>
		<comments>http://www.phpzag.com/php-regex-to-validate-a-domain-name/#comments</comments>
		<pubDate>Sat, 22 Dec 2012 07:33:34 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2939</guid>
		<description><![CDATA[We often face problem during validating urls or domain name using PHP regex.  The problems like the regex is either not working properly with some specific domain or sub-domain  name etc. I know sometimes it&#8217;s too complex, for urls with sub domains, protocols, and file paths. So here using below PHP regex code, you can validate [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-regex-to-validate-a-domain-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5.5.0 Alpha2 released</title>
		<link>http://www.phpzag.com/php-5-5-0-alpha2-released/</link>
		<comments>http://www.phpzag.com/php-5-5-0-alpha2-released/#comments</comments>
		<pubDate>Sat, 22 Dec 2012 07:32:42 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2947</guid>
		<description><![CDATA[The regular PHP updates are released for PHP 5.5.0 Alpha2. The PHP development team announces the immediate availability of PHP 5.5.0alpha2. This release adds new features and fix some bugs from alpha1. All users of PHP are encouraged to test this version carefully, and report any bugs in the bug tracking system. 5.5.0 Alpha2 come [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-5-5-0-alpha2-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5.4.10 and PHP 5.3.20 released!</title>
		<link>http://www.phpzag.com/php-5-4-10-and-php-5-3-20-released/</link>
		<comments>http://www.phpzag.com/php-5-4-10-and-php-5-3-20-released/#comments</comments>
		<pubDate>Sat, 22 Dec 2012 07:26:04 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2944</guid>
		<description><![CDATA[The regular PHP updates are released for PHP 5.4.10 and PHP 5.3.20. The PHP development team announces the immediate availability of PHP 5.4.10 and PHP 5.3.20. These releases fix about 15 bugs. Please note that the PHP 5.3 series will enter an end of life cycle and receive only critical fixes as of March 2013. [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-5-4-10-and-php-5-3-20-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get all images from a HTML document Using PHP</title>
		<link>http://www.phpzag.com/get-all-images-from-a-html-document-using-php/</link>
		<comments>http://www.phpzag.com/get-all-images-from-a-html-document-using-php/#comments</comments>
		<pubDate>Fri, 21 Dec 2012 17:27:49 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2936</guid>
		<description><![CDATA[Sometimes we have to get the images from an HTML page just like Facebook does when a link is posted. You can easily get images from HTML page using PHP. Below example code will return all images from a HTML document, you just need to get the source content of any HTML page and pass [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/get-all-images-from-a-html-document-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sanitize Your Input in PHP</title>
		<link>http://www.phpzag.com/sanitize-your-input-in-php/</link>
		<comments>http://www.phpzag.com/sanitize-your-input-in-php/#comments</comments>
		<pubDate>Fri, 14 Dec 2012 18:00:15 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2933</guid>
		<description><![CDATA[We cannot always trust user input because it may be malicious. You should always check all global arrays like $_GET, $_POST, $_REQUEST, $_COOKIE, allow only known variables and make sure that they contain the right type of data. Also keep only those variables which your script requires. For example if you have a $_GET['id'] variable [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/sanitize-your-input-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP $GLOBALS (superglobal or automatic global) variable</title>
		<link>http://www.phpzag.com/php-globals-superglobal-or-automatic-global-variable/</link>
		<comments>http://www.phpzag.com/php-globals-superglobal-or-automatic-global-variable/#comments</comments>
		<pubDate>Wed, 12 Dec 2012 17:49:44 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2930</guid>
		<description><![CDATA[$GLOBAL is a php super global or automatic global variable which can be used in place of &#8216;global&#8216; keyword to access variables from global scope. This simply means that it is available in all scopes throughout a script. There is no need to do global $variable; to access it within functions or methods. $GLOBALS example: [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-globals-superglobal-or-automatic-global-variable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shuffle String Randomly Using PHP Function</title>
		<link>http://www.phpzag.com/shuffle-string-randomly-using-php-function/</link>
		<comments>http://www.phpzag.com/shuffle-string-randomly-using-php-function/#comments</comments>
		<pubDate>Tue, 11 Dec 2012 19:07:28 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2914</guid>
		<description><![CDATA[The str_shuffle function is used to shuffle all the characters of a string randomly. The function is mainly used for generating a random password or produce random characters for CAPTCHA validation image. Each time str_shuffle function executes and it will randomly re-shuffle the string view plaincopy to clipboardprint? &#60;?php $str = &#8216;abcdef&#8217;; $shuffled = str_shuffle($str); [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/shuffle-string-randomly-using-php-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Garbage Collection</title>
		<link>http://www.phpzag.com/php-garbage-collection/</link>
		<comments>http://www.phpzag.com/php-garbage-collection/#comments</comments>
		<pubDate>Tue, 04 Dec 2012 17:18:29 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[PHP garbage collection]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2902</guid>
		<description><![CDATA[PHP garbage collection is largely a reference counter. If you are keeping references which are still accessible around these will easily add up if not freed. PHP has built-in function to manage that garbage collection or memory cleanup for long-running scripts. these php functions can easily improve your site performance. Below is the php script [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-garbage-collection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5.4.9 and PHP 5.3.19 released</title>
		<link>http://www.phpzag.com/php-5-4-9-and-php-5-3-19-released/</link>
		<comments>http://www.phpzag.com/php-5-4-9-and-php-5-3-19-released/#comments</comments>
		<pubDate>Fri, 30 Nov 2012 18:49:28 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2900</guid>
		<description><![CDATA[The regular PHP updates are released for PHP 5.4.9 and PHP 5.3.19. The PHP development team has announced the immediate availability of PHP 5.4.9 and PHP 5.3.19. These releases fix over 15 bugs. All users of PHP are encouraged to upgrade to PHP 5.4.9and PHP 5.3.19. The key enhancements in these releases include: Fixed bug [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-5-4-9-and-php-5-3-19-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTTP authentication with PHP</title>
		<link>http://www.phpzag.com/http-authentication-with-php/</link>
		<comments>http://www.phpzag.com/http-authentication-with-php/#comments</comments>
		<pubDate>Fri, 30 Nov 2012 18:39:25 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2896</guid>
		<description><![CDATA[We often need to protect a certain block, file or a set of files, in order to prevent unauthorized access to those files or block. There are many alternatives to do this like sessions, cookies, JavaScript and HTTP authentication. Here in this post we are going to discuss HTTP authentication. Generally HTTP Authentication is Apache [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/http-authentication-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5.5.0 Alpha1 Version released for Development Preview</title>
		<link>http://www.phpzag.com/php-5-5-0-alpha1-version-released-for-development-preview/</link>
		<comments>http://www.phpzag.com/php-5-5-0-alpha1-version-released-for-development-preview/#comments</comments>
		<pubDate>Sat, 17 Nov 2012 06:02:04 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php version release]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2893</guid>
		<description><![CDATA[The regular PHP updates are released for PHP 5.5.0 Alpha1. The PHP development team announces the immediate availability of PHP 5.5.0 alpha1. This release marks the beginning of the PHP 5.5.0 release cycle. All users of PHP are encouraged to test this version carefully, and report any bugs in the bug tracking system. PHP 5.5.0 [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-5-5-0-alpha1-version-released-for-development-preview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secure your PHP script by hiding extensions</title>
		<link>http://www.phpzag.com/secure-your-php-script-by-hiding-extensions/</link>
		<comments>http://www.phpzag.com/secure-your-php-script-by-hiding-extensions/#comments</comments>
		<pubDate>Fri, 02 Nov 2012 05:38:35 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php tutorials]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2889</guid>
		<description><![CDATA[In general, security by obscurity is one of the weakest forms of security. Suppose If I were exploiting a site, I wouldn&#8217;t check what scripting language the site runs on, because all that would matter to me is exploiting it. Hiding the fact that you use x language isn&#8217;t going to prevent me from bypassing [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/secure-your-php-script-by-hiding-extensions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run PHP as CGI with Apache on Ubuntu</title>
		<link>http://www.phpzag.com/run-php-as-cgi-with-apache-on-ubuntu/</link>
		<comments>http://www.phpzag.com/run-php-as-cgi-with-apache-on-ubuntu/#comments</comments>
		<pubDate>Wed, 31 Oct 2012 17:54:30 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2886</guid>
		<description><![CDATA[PHP is built as both a CLI and CGI program, which can be used for CGI processing. If you are running a web server that PHP has module support for, you should generally go for that solution for performance reasons. However, the CGI version enables users to run different PHP-enabled pages under different user-ids. Here [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/run-php-as-cgi-with-apache-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5.4.8 and PHP 5.3.18 updates are released</title>
		<link>http://www.phpzag.com/php-5-4-8-and-php-5-3-18-updates-are-released/</link>
		<comments>http://www.phpzag.com/php-5-4-8-and-php-5-3-18-updates-are-released/#comments</comments>
		<pubDate>Sat, 20 Oct 2012 17:35:54 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[updates]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2877</guid>
		<description><![CDATA[The regular PHP updates are released for PHP 5.4.8 and PHP 5.3.18. The PHP development team has announced the immediate availability of PHP 5.4.8 and PHP 5.3.18. These releases fix over 20 bugs. All users of PHP are encouraged to upgrade to PHP 5.4.8 and PHP 5.3.18. The key enhancements in these releases include: Fixed [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-5-4-8-and-php-5-3-18-updates-are-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using &#8216;word-wrap: break-word&#8217; within a table</title>
		<link>http://www.phpzag.com/using-word-wrap-break-word-within-a-table/</link>
		<comments>http://www.phpzag.com/using-word-wrap-break-word-within-a-table/#comments</comments>
		<pubDate>Sat, 20 Oct 2012 10:41:38 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2869</guid>
		<description><![CDATA[As you can implement word wrapping efficiently with &#60;div&#62; element. But it creates problem when we implement it with &#60;table&#62; table element. In below example, when we use &#8220;word-wrap:break-word&#8221; with &#60;div&#62; element and it works great. view plaincopy to clipboardprint? &#60;div style=&#8220;width:100%; word-wrap: break-word;&#8221;&#62; AAAAAAAAAAAAAAAAA ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ &#60;/div&#62; &#60;div style=&#8221;width:100%; word-wrap: break-word;&#8221;&#62;&#60;br /&#62; AAAAAAAAAAAAAAAAA&#60;br /&#62; ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ&#60;br /&#62; &#60;/div&#62; Step [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/using-word-wrap-break-word-within-a-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apply Multiple CSS classes for a single element</title>
		<link>http://www.phpzag.com/apply-multiple-css-classes-for-a-single-element/</link>
		<comments>http://www.phpzag.com/apply-multiple-css-classes-for-a-single-element/#comments</comments>
		<pubDate>Sat, 20 Oct 2012 09:39:48 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2864</guid>
		<description><![CDATA[You can apply multiple CSS classes to a single element by separating them with a space in your attribute. It&#8217;s a very useful trick with CSS which doesn’t limit your element to just one class. When I have started working with CSS few years ago, never realised that it can actually be done. But when [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/apply-multiple-css-classes-for-a-single-element/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5.4.7 and PHP 5.3.17 updates released</title>
		<link>http://www.phpzag.com/php-5-4-7-and-php-5-3-17-updates-released/</link>
		<comments>http://www.phpzag.com/php-5-4-7-and-php-5-3-17-updates-released/#comments</comments>
		<pubDate>Tue, 16 Oct 2012 18:36:13 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2855</guid>
		<description><![CDATA[The regular PHP updates are released for PHP 5.4.7 and PHP 5.3.17. The PHP development team has announced the immediate availability of PHP 5.4.7 and PHP 5.3.17. These releases fix over 20 bugs. All users of PHP are encouraged to upgrade to PHP 5.4.7, or at least 5.3.17. The key enhancements in these releases include: [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-5-4-7-and-php-5-3-17-updates-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Git Access &#8211; Get latest PHP source without having to wait for the official releases</title>
		<link>http://www.phpzag.com/php-git-access-get-latest-php-source-without-having-to-wait-for-the-official-releases/</link>
		<comments>http://www.phpzag.com/php-git-access-get-latest-php-source-without-having-to-wait-for-the-official-releases/#comments</comments>
		<pubDate>Sun, 14 Oct 2012 17:04:42 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2845</guid>
		<description><![CDATA[PHP provides direct access to its development repository. If you want to get the latest PHP fixes and updates, without having to wait for the official release. Then you can obtain it through Git. But remember, this source code is development version, and is often unstable and may not even compile properly. Steps for using [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-git-access-get-latest-php-source-without-having-to-wait-for-the-official-releases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use Google Hosted JQuery and Javascript Libraries in Your Projects</title>
		<link>http://www.phpzag.com/use-google-hosted-jquery-and-javascript-libraries-in-your-projects/</link>
		<comments>http://www.phpzag.com/use-google-hosted-jquery-and-javascript-libraries-in-your-projects/#comments</comments>
		<pubDate>Sat, 13 Oct 2012 11:35:37 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2834</guid>
		<description><![CDATA[Now Google started hosting of most popular libraries in large scale such a JQuery, Dojo, Moo Tools, Prototype, SWFObject, WebFont Loader, script.aculo.us, jQuery UI,  AngularJS and open-source JavaScript libraries. The hosted libraries provide access to a growing list of the most popular, open-source JavaScript libraries. You can simply load library to your site by using &#60;script [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/use-google-hosted-jquery-and-javascript-libraries-in-your-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Smart Tips to Become a Better PHP Developer</title>
		<link>http://www.phpzag.com/10-smart-tips-to-become-a-better-php-developer/</link>
		<comments>http://www.phpzag.com/10-smart-tips-to-become-a-better-php-developer/#comments</comments>
		<pubDate>Fri, 12 Oct 2012 17:47:07 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2824</guid>
		<description><![CDATA[Currently PHP has become the most popular programming language for web development. Millions of websites are developed using PHP. There are many popular website such as Facebook, Wikipedia and also CMS like WordPress, Joomla and Drupal which are built with the PHP language. So with the popularity, it has become necessary for web developer to [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/10-smart-tips-to-become-a-better-php-developer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Protect Your PHP Source Code</title>
		<link>http://www.phpzag.com/how-to-protect-your-php-source-code/</link>
		<comments>http://www.phpzag.com/how-to-protect-your-php-source-code/#comments</comments>
		<pubDate>Mon, 08 Oct 2012 17:55:50 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2816</guid>
		<description><![CDATA[One of the main threat PHP developers face is that PHP is an interpreted language, means PHP source code is readable by anybody who downloads your application. We can say that it&#8217;s a drawback of PHP. But you can protect your intellectual property by encoding your PHP source code. Here in this article I will [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/how-to-protect-your-php-source-code/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>TIPS to Optimize Your MySQL Database</title>
		<link>http://www.phpzag.com/tips-to-optimize-your-mysql-database/</link>
		<comments>http://www.phpzag.com/tips-to-optimize-your-mysql-database/#comments</comments>
		<pubDate>Sun, 07 Oct 2012 15:58:41 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[MYSQL]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2796</guid>
		<description><![CDATA[These are the Database Optimization guidelines that I follow when writing my code, as a coding standard is already exists for the project I&#8217; m working on. These can be helpful for the developer as it assist developers to know do’s and don’ts during the Database Optimization and coding practices. Actually Database Optimization TIPS helps [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/tips-to-optimize-your-mysql-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Framework: Writing and Reading Session Data Using Zend Session Namespace</title>
		<link>http://www.phpzag.com/zend-framework-writing-and-reading-session-data-using-zend-session-namespace/</link>
		<comments>http://www.phpzag.com/zend-framework-writing-and-reading-session-data-using-zend-session-namespace/#comments</comments>
		<pubDate>Fri, 05 Oct 2012 18:28:05 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[zend framework]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2784</guid>
		<description><![CDATA[Today I have tried with Session in Zend Framework. Actually Session handling is very simple in Zend Framework. It&#8217;s handled very efficiently using Object Oriented Programming. In this article I’m going to discuss some useful techniques of using Zend Framework Session and Session namespace. In Zend framework, you can use both Zend_Session and Zend_Session_Namespace which [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/zend-framework-writing-and-reading-session-data-using-zend-session-namespace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Caching HTTP Headers in PHP</title>
		<link>http://www.phpzag.com/caching-http-headers-in-php/</link>
		<comments>http://www.phpzag.com/caching-http-headers-in-php/#comments</comments>
		<pubDate>Tue, 02 Oct 2012 06:57:38 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2778</guid>
		<description><![CDATA[Page caching is very important for a website as it speeds up repeated page views and saves a lot of traffic by preventing downloading content every page view. You can implement page caching by setting PHP header&#8217;s Cache-Control: max-age&#8230; property. The Cache control property will inform browser that the component won&#8217;t be changed for defined [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/caching-http-headers-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Defining Relative Path Using html &#8216;base&#8217; tag</title>
		<link>http://www.phpzag.com/defining-relative-path-using-html-base-tag/</link>
		<comments>http://www.phpzag.com/defining-relative-path-using-html-base-tag/#comments</comments>
		<pubDate>Mon, 01 Oct 2012 18:13:38 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2763</guid>
		<description><![CDATA[Sometimes you need to define relative path in a html page.  HTML provides &#60;base&#62; tag for defining relative urls in a html page. The href attribute of  &#60;base&#62; tag specifies the base URL for all relative URLs in the page. There can be at maximum one &#60;base&#62; element in a document, and it must be [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/defining-relative-path-using-html-base-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are You Looking for Facebook LIKES?</title>
		<link>http://www.phpzag.com/are-you-looking-for-facebook-likes/</link>
		<comments>http://www.phpzag.com/are-you-looking-for-facebook-likes/#comments</comments>
		<pubDate>Sun, 30 Sep 2012 18:25:35 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2862</guid>
		<description><![CDATA[Currently social networking sites plays very important role in promoting your business and products. Social sites such as facebook provide facility to create your own custom page for your business needs. You can also promote your business by getting likes from your customers, friends etc. The main reason to gain like is, if you have [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/are-you-looking-for-facebook-likes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use static variables in a PHP function</title>
		<link>http://www.phpzag.com/how-to-use-static-variables-in-a-php-function/</link>
		<comments>http://www.phpzag.com/how-to-use-static-variables-in-a-php-function/#comments</comments>
		<pubDate>Sun, 30 Sep 2012 15:32:56 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2757</guid>
		<description><![CDATA[Sometimes we have to use static variable in a PHP function. Actually static variables maintain its value between function calls. In below example function,  the $count variable initialized as static with &#8220;0&#8243; value. view plaincopy to clipboardprint? &#60;?php function foo() { static $count = 0; $count++; echo &#8220;Count:&#8221;.$count.&#8220;&#60;/br&#62;&#8221;; } foo(); foo(); foo(); foo(); foo(); ?&#62; &#60;?php&#60;br /&#62; function foo() {&#60;br [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/how-to-use-static-variables-in-a-php-function/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sending a header using the PHP SOAP client</title>
		<link>http://www.phpzag.com/sending-a-header-using-the-php-soap-client/</link>
		<comments>http://www.phpzag.com/sending-a-header-using-the-php-soap-client/#comments</comments>
		<pubDate>Sun, 30 Sep 2012 08:25:31 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2752</guid>
		<description><![CDATA[You can create your own SOAP Client to send a header in a minute using PHP. PHP provides SOAP API which has numerous functions to create SOAP Client, initialize SOAP Header and also setting SOAP Header. Actually when interacting with SOAP Server, the server requires a header to be sent which have API key. The [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/sending-a-header-using-the-php-soap-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check function existence before calling in Javascript/JQuery</title>
		<link>http://www.phpzag.com/check-function-existence-before-calling-in-javascriptjquery/</link>
		<comments>http://www.phpzag.com/check-function-existence-before-calling-in-javascriptjquery/#comments</comments>
		<pubDate>Fri, 28 Sep 2012 16:01:20 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2748</guid>
		<description><![CDATA[Sometimes we need to check of function existence in Javascript/JQuery before calling it. This is very simple, just use Javascript window object to check for function. if you are using JQuery, use jQuery.isFunction to check function existence. Here in this I have explained how to test function exists before calling it. Javascript codes to check [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/check-function-existence-before-calling-in-javascriptjquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with CSS max-width Property</title>
		<link>http://www.phpzag.com/working-with-css-max-width-property/</link>
		<comments>http://www.phpzag.com/working-with-css-max-width-property/#comments</comments>
		<pubDate>Thu, 27 Sep 2012 17:55:42 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2741</guid>
		<description><![CDATA[The max-width sets the maximum content width of a block which does not include padding, borders or margins. An element to which max-width applied will never be wider than the specified value even if the width of an element is set to be wider. But sometimes problem occurred with this rule as if min-width is [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/working-with-css-max-width-property/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uploading files through FTP using PHP</title>
		<link>http://www.phpzag.com/uploading-files-through-ftp-using-php/</link>
		<comments>http://www.phpzag.com/uploading-files-through-ftp-using-php/#comments</comments>
		<pubDate>Wed, 26 Sep 2012 06:18:45 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2736</guid>
		<description><![CDATA[As a web developer, we often need FTP Clients(FileZila, WinSCP, SmartFTP etc.) to send or upload files to a server via FTP. But if you are familiar with php, you can easily create your own FTP script to sending files from one server to another. php provides ftp_put function to upload a file to the [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/uploading-files-through-ftp-using-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTML5 download Attribute</title>
		<link>http://www.phpzag.com/html5-download-attribute/</link>
		<comments>http://www.phpzag.com/html5-download-attribute/#comments</comments>
		<pubDate>Mon, 24 Sep 2012 07:59:24 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2730</guid>
		<description><![CDATA[As we had discussed many useful html5  elements and attributes like canvas, placeholders, figure, slider, header, audio etc. Recently, I have find extremely useful html5 attribute. it&#8217;s a html5 download attribute that&#8217;s very simple to use. The download attribute allows you to set a separate file name for download using anchor tag. you just need to [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/html5-download-attribute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 New hidden Attribute</title>
		<link>http://www.phpzag.com/html5-new-hidden-attribute/</link>
		<comments>http://www.phpzag.com/html5-new-hidden-attribute/#comments</comments>
		<pubDate>Sat, 22 Sep 2012 16:30:57 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2725</guid>
		<description><![CDATA[HTML5 has provide us with useful and magical HTML attribute: placeholder and many more. There is another new attribute introduces by HTML5, that&#8217;s hidden atribute. This atribute functions just like CSS &#8220;display:none;&#8221;. According to HTML5 specification, any element which has the hidden attribute should be considered irrelevant and thus should not be rendered by the [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/html5-new-hidden-attribute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Box Sizing and Control Textarea Width</title>
		<link>http://www.phpzag.com/box-sizing-and-control-textarea-width/</link>
		<comments>http://www.phpzag.com/box-sizing-and-control-textarea-width/#comments</comments>
		<pubDate>Thu, 20 Sep 2012 07:10:54 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2722</guid>
		<description><![CDATA[Working with html elements, sometimes we have to control width of an element within its parent container. As we know that few html elements containing padding which makes things more vulnerable. For example working with textarea sometimes we needed 100% width. But it creates problem as it contains padding which stretch it outside of the [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/box-sizing-and-control-textarea-width/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rounding Up AJAX/JQuery File Uploader for your Web Application</title>
		<link>http://www.phpzag.com/rounding-up-ajaxjquery-file-uploader-for-your-web-application/</link>
		<comments>http://www.phpzag.com/rounding-up-ajaxjquery-file-uploader-for-your-web-application/#comments</comments>
		<pubDate>Wed, 19 Sep 2012 06:16:12 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2690</guid>
		<description><![CDATA[Uploading files and images are very common tasks in the modern web like uploading profile picture, uploading trip pictures to their social networking account etc. As uploading files is a very simple task but AJAX and JQUERY improved it much more. Now many JQuery file upload plugins are available which allow for more complex functionality [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/rounding-up-ajaxjquery-file-uploader-for-your-web-application/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Insert content at cursor position in tinyMCE rich text editor</title>
		<link>http://www.phpzag.com/insert-content-at-cursor-position-in-tinymce-rich-text-editor/</link>
		<comments>http://www.phpzag.com/insert-content-at-cursor-position-in-tinymce-rich-text-editor/#comments</comments>
		<pubDate>Wed, 19 Sep 2012 04:22:34 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2684</guid>
		<description><![CDATA[Recently I had a requirement to add text and images at the cursor position in tiny editor. Actaully I had to impliment multple images attachment with &#8220;add to post&#8221; button with each uploaded images and when user clicked the button &#8220;add to post&#8221;, the image will be get inserted at cursor position in Tiny mce [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/insert-content-at-cursor-position-in-tinymce-rich-text-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Tutorials and Resources</title>
		<link>http://www.phpzag.com/php-tutorials-and-resources/</link>
		<comments>http://www.phpzag.com/php-tutorials-and-resources/#comments</comments>
		<pubDate>Sat, 15 Sep 2012 06:18:18 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php roundups]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2651</guid>
		<description><![CDATA[PHP is the most popular scripting language in web world. it&#8217;s very easy to learn. it doesn&#8217;t matter if you are newbie or experienced. You jsut need to cover basics of PHP language to start your server side web projet. Here we will cover usefull php tutorials and resources which surely make PHP easy for [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/php-tutorials-and-resources/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Stunning jQuery Lightbox Plugins for Your Upcoming Web Designs</title>
		<link>http://www.phpzag.com/stunning-jquery-lightbox-plugins-for-your-upcoming-web-designs/</link>
		<comments>http://www.phpzag.com/stunning-jquery-lightbox-plugins-for-your-upcoming-web-designs/#comments</comments>
		<pubDate>Thu, 13 Sep 2012 16:49:21 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2629</guid>
		<description><![CDATA[Lightbox are powerful JQuery plugins which can transform any simple image library into an attractive and effective gallery. In current scenario everybody wants  JQuery lightbox effects on their web images and image galleries. Actually Since the original lightbox JQuery plugin,  there has been developed many lightbox JQuery plugins . Among them few are very popular plugins. In this [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/stunning-jquery-lightbox-plugins-for-your-upcoming-web-designs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Load jQuery Dynamically with Latest Version</title>
		<link>http://www.phpzag.com/load-jquery-dynamically-with-latest-version/</link>
		<comments>http://www.phpzag.com/load-jquery-dynamically-with-latest-version/#comments</comments>
		<pubDate>Wed, 12 Sep 2012 12:01:25 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2620</guid>
		<description><![CDATA[Recently I have needed to load JQuery dynamically. The requirement was to load JQuery properly within script tag with its attributes; and finally within HEAD tag. Actually its very simple to include JQuery dynamically. it require a little knowledge of JavaScript to create html DOM elements and attributes dynamically. Below example is a running code [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/load-jquery-dynamically-with-latest-version/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Working with WordPress Custom Fields</title>
		<link>http://www.phpzag.com/working-with-wordpress-custom-fields/</link>
		<comments>http://www.phpzag.com/working-with-wordpress-custom-fields/#comments</comments>
		<pubDate>Wed, 12 Sep 2012 06:18:59 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2606</guid>
		<description><![CDATA[In our previous articles, you have read about Hooks and Plugins. In this article, we will discuss about WordPress Custom Fields and its use. What are WordPress Custom Fields? WordPress Custom Fields are a form of meta data that allows you to store individual infromation with each WordPress post. it&#8217;s a powerful component of WordPress [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/working-with-wordpress-custom-fields/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free Bundle of 99 PSD from Design Shocks</title>
		<link>http://www.phpzag.com/free-bundle-of-99-psd-from-design-shocks/</link>
		<comments>http://www.phpzag.com/free-bundle-of-99-psd-from-design-shocks/#comments</comments>
		<pubDate>Mon, 10 Sep 2012 18:02:03 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2599</guid>
		<description><![CDATA[This is awesome freebie PSD themes collection from Design Shocks. it contains 99 High Quality PSD Themes. By using these themes, you can create high quality template because these are made with the possible highest quality design. Themes Previews 1: Themes Previews 2: Themes Previews 3: Download from here: Download]]></description>
		<wfw:commentRss>http://www.phpzag.com/free-bundle-of-99-psd-from-design-shocks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Codelobster – Free PHP, HTML, CSS, JavaScript Editor (IDE)</title>
		<link>http://www.phpzag.com/codelobster-%e2%80%93-free-php-html-css-javascript-editor-ide/</link>
		<comments>http://www.phpzag.com/codelobster-%e2%80%93-free-php-html-css-javascript-editor-ide/#comments</comments>
		<pubDate>Sun, 09 Sep 2012 06:10:38 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2586</guid>
		<description><![CDATA[In my previous article, I have provided you with  major Editors for PHP Development . In this article, we will discuss about Codelobster PHP editor. Codelobster is a free PHP, HTML, CSS, JavaScript Editor (IDE) which simplifies PHP development process. This is a smart PHP editor, you don&#8217;t need to keep in mind names of [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/codelobster-%e2%80%93-free-php-html-css-javascript-editor-ide/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free! CSS Box Machine</title>
		<link>http://www.phpzag.com/free-css-box-machine/</link>
		<comments>http://www.phpzag.com/free-css-box-machine/#comments</comments>
		<pubDate>Sat, 08 Sep 2012 17:21:09 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2582</guid>
		<description><![CDATA[CSS Box Machine is a free resource from wordpressthemeshock. it is a CSS boxes generator, which has about 25 boxes styles for you to use rightaway.It’s as easy as surfing through the box styles and select the one you like the most, you have the option to grab the CSS styles and the HTML markup [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/free-css-box-machine/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Free Minimalistic Responsive WordPress theme</title>
		<link>http://www.phpzag.com/free-minimalistic-responsive-wordpress-theme/</link>
		<comments>http://www.phpzag.com/free-minimalistic-responsive-wordpress-theme/#comments</comments>
		<pubDate>Sat, 08 Sep 2012 16:57:17 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2576</guid>
		<description><![CDATA[This is a free responsive minimalistic styled theme from wordpressthemeshock that will allow you to create a nice magazine site, obviously it has all the features  like Multiple fonts, gallery, unlimited sidebars, fully responsive, making it fully adaptable to any device like iPad, iPhone, android, etc. Main features of this free theme: This theme is [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/free-minimalistic-responsive-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>TinyMCE WYSIWYG Editor &#8211; Customize tinymce editor</title>
		<link>http://www.phpzag.com/tinymce-wysiwyg-editor-customizing-tinymce-editors-existing-functionality/</link>
		<comments>http://www.phpzag.com/tinymce-wysiwyg-editor-customizing-tinymce-editors-existing-functionality/#comments</comments>
		<pubDate>Thu, 06 Sep 2012 10:16:16 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[tinymce]]></category>
		<category><![CDATA[TinyMCE WYSIWYG Editor]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2441</guid>
		<description><![CDATA[TinyMCE is a open-source web based Javascript HTML WYSIWYG editor, which allows users to add custom HTML and CSS without having to remember any code. You can simply select the element or text and apply the relevant format using the style dropdown, font dropdown, font size available in the visual editor. As a web designer [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/tinymce-wysiwyg-editor-customizing-tinymce-editors-existing-functionality/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Lightbox &#8211; Lightbox 2.0 image viewer</title>
		<link>http://www.phpzag.com/lightbox-lightbox-2-0-image-viewer/</link>
		<comments>http://www.phpzag.com/lightbox-lightbox-2-0-image-viewer/#comments</comments>
		<pubDate>Wed, 05 Sep 2012 14:26:32 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[lightbox]]></category>
		<category><![CDATA[lightbox2]]></category>
		<category><![CDATA[lightboxes]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2432</guid>
		<description><![CDATA[Lightbox is a popular, simple, unobtrusive script used to overlay images on top of the current page. It&#8217;s a snap to setup and works on all modern browsers. This lightbox plugin can give your gallery something extra you may wish to add the Lightbox effect. The Lightbox plugin  is originally developed by Lokeshdhaker.com. Lightbox plugin [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/lightbox-lightbox-2-0-image-viewer/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Overloading and Overriding in PHP</title>
		<link>http://www.phpzag.com/overloading-and-overriding-in-php/</link>
		<comments>http://www.phpzag.com/overloading-and-overriding-in-php/#comments</comments>
		<pubDate>Mon, 03 Sep 2012 19:03:56 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[overloading]]></category>
		<category><![CDATA[overriding]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php oop]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2429</guid>
		<description><![CDATA[Overloading and Overriding are forms of polymorphism in OOP. According to Object Oriented Programming (OOP) concept if a class has methods of the same name but different parameters then we say that we are overloading that method. Also if we were to create a method in the child class having the same name, same number [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/overloading-and-overriding-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tips To Improve Your Ecommerce Site’s Security</title>
		<link>http://www.phpzag.com/tips-to-improve-your-ecommerce-site%e2%80%99s-security/</link>
		<comments>http://www.phpzag.com/tips-to-improve-your-ecommerce-site%e2%80%99s-security/#comments</comments>
		<pubDate>Sun, 02 Sep 2012 10:19:20 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[ecommerce security]]></category>
		<category><![CDATA[ecommerce tips]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2425</guid>
		<description><![CDATA[Today security is the main concern for all eCommerce website because these website&#8217;s have very important transactions data. However, we can limit the security holes by adopting few easy steps. Here in this post I have explained few basic points that causes security risk in your eCommerce website. So you should make sure that you [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/tips-to-improve-your-ecommerce-site%e2%80%99s-security/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Advertising on PHPZAG.COM</title>
		<link>http://www.phpzag.com/advertising-on-phpzag-com/</link>
		<comments>http://www.phpzag.com/advertising-on-phpzag-com/#comments</comments>
		<pubDate>Sat, 01 Sep 2012 18:09:38 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Web Services]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2592</guid>
		<description><![CDATA[PHPZAG.COM offers attractive advertisement options to companies needing to reach a global audience consisting of designers, developers, web start-up owners, programmers, IT managers, IT professionals, web design/development enthusiasts, web hosting and influential bloggers. Available Ad units : 125 x 125 Sidebar Banner. Get In Touch For Rates and Availability If you are interested, just send an email [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/advertising-on-phpzag-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento: Display New Products from Specific Category On Home Page</title>
		<link>http://www.phpzag.com/magento-display-new-products-from-specific-category-on-home-page/</link>
		<comments>http://www.phpzag.com/magento-display-new-products-from-specific-category-on-home-page/#comments</comments>
		<pubDate>Fri, 31 Aug 2012 11:09:19 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2423</guid>
		<description><![CDATA[In my previous post, I have posted the code to add new products on your Magento home page or any page. Sometimes we have a requirement to display products category wise. Magento has built in functionality to display products from specific category. It is very simple , just set products “as new” in your catalog, [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/magento-display-new-products-from-specific-category-on-home-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 Canvas Element</title>
		<link>http://www.phpzag.com/html5-canvas-element/</link>
		<comments>http://www.phpzag.com/html5-canvas-element/#comments</comments>
		<pubDate>Thu, 30 Aug 2012 19:00:24 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[htML5 canvas]]></category>
		<category><![CDATA[html5 tutorials]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2412</guid>
		<description><![CDATA[&#60;canvas&#62; is a HTML5 element which is used to draw graphics using scripting. This element can be used to draw graphs, make photo compositions or do simple animations. This tutorial describes how to implement the &#60;canvas&#62; element in your HTML pages. The examples provided should give you some clear ideas what you can do with [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/html5-canvas-element/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert Mysql DATETIME to timestamp</title>
		<link>http://www.phpzag.com/convert-mysql-datetime-to-timestamp/</link>
		<comments>http://www.phpzag.com/convert-mysql-datetime-to-timestamp/#comments</comments>
		<pubDate>Thu, 30 Aug 2012 07:24:06 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php datetime]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2406</guid>
		<description><![CDATA[As PHP developer, we  often need to convert Mysql datetime into unix timestamp. Here in this post I have written a PHP function to Convert mysql datetime (YYYY-MM-DD HH:MM:SS) into a unix timestamp. /* * This Function turn a mysql datetime (YYYY-MM-DD HH:MM:SS) into a unix timestamp * @param date_str */ function convertDatetime($date_str) { list($date, [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/convert-mysql-datetime-to-timestamp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dealing with Magento Model or Collections</title>
		<link>http://www.phpzag.com/dealing-with-magento-model-or-collections/</link>
		<comments>http://www.phpzag.com/dealing-with-magento-model-or-collections/#comments</comments>
		<pubDate>Thu, 30 Aug 2012 06:40:37 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[magento collections]]></category>
		<category><![CDATA[magento models]]></category>
		<category><![CDATA[mageto tutorials]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2401</guid>
		<description><![CDATA[As We know that the implementation of a &#8220;Models Tier&#8221; is a important part of any MVC framework. It represents the data of your application, and most applications are useless without data. Magento Models play an even important role, as they contain the &#8220;Business Logic&#8221; that&#8217;s often relegated to the Controller or Helper methods in [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/dealing-with-magento-model-or-collections/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Magento: Display New Products On Home Page</title>
		<link>http://www.phpzag.com/magento-display-new-products-on-home-page/</link>
		<comments>http://www.phpzag.com/magento-display-new-products-on-home-page/#comments</comments>
		<pubDate>Wed, 29 Aug 2012 06:38:09 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[display new products]]></category>
		<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2396</guid>
		<description><![CDATA[Sometimes you have a requirement to display new products on home page or any page in your Magento site. For this Magento has a built-in feature to dispaly new products on any page. You just need to paste the below code in your CMS page to show new products. view plaincopy to clipboardprint? {{block type=&#8220;catalog/product_new&#8221; name=&#8220;home.catalog.product.new&#8221; [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/magento-display-new-products-on-home-page/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hide and Show a Div Using Javascript</title>
		<link>http://www.phpzag.com/hide-and-show-a-div-using-javascript/</link>
		<comments>http://www.phpzag.com/hide-and-show-a-div-using-javascript/#comments</comments>
		<pubDate>Tue, 28 Aug 2012 14:28:54 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[hide show div]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2391</guid>
		<description><![CDATA[In this post I have explained how to create a hidden Div and display it with the click of a button. Actually there is a many reasons you may want to hide a Div in a website design. Sometimes you may want to create a drop down type menu or a box that will show [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/hide-and-show-a-div-using-javascript/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create a CSV file using PHP/MYSQL</title>
		<link>http://www.phpzag.com/create-a-csv-file-using-phpmysql/</link>
		<comments>http://www.phpzag.com/create-a-csv-file-using-phpmysql/#comments</comments>
		<pubDate>Tue, 28 Aug 2012 06:39:45 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[csv file]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php tutorial]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2386</guid>
		<description><![CDATA[As we know that CSV files are one of the most used way to back-up mysql database and tables. However it is very simple to export or backup your mysql database table as CSV file if you have PhpMyAdmin interface installed on your server. Actually problem arises when we have to deal with a shared [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/create-a-csv-file-using-phpmysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento: Display More Than 5 New Products</title>
		<link>http://www.phpzag.com/magento-display-more-than-5-new-products/</link>
		<comments>http://www.phpzag.com/magento-display-more-than-5-new-products/#comments</comments>
		<pubDate>Mon, 27 Aug 2012 10:39:42 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Display More Than 5 New Products]]></category>
		<category><![CDATA[magento]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2380</guid>
		<description><![CDATA[Sometimes we have to display more new products than default number. The default count of new products in Magento  is fixed only 5. But you can display more than 5 new products without modifying Magento core files. You can use below code for setting new product count according to your requirement. view plaincopy to clipboardprint? [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/magento-display-more-than-5-new-products/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Use of Hooks in WordPress</title>
		<link>http://www.phpzag.com/use-of-hooks-in-wordpress/</link>
		<comments>http://www.phpzag.com/use-of-hooks-in-wordpress/#comments</comments>
		<pubDate>Fri, 17 Aug 2012 08:59:19 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[actions in wordpress]]></category>
		<category><![CDATA[filters in wordpress]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress hooks]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2377</guid>
		<description><![CDATA[If your are in WordPress developemnt, then you can not ignore the importance of hooks. suppose you want to add some functionality to WordPress, you will need to edit some core functionality of WordPress. But WordPress doesn&#8217;t allow you to do this. Just use WordPress Hooks to add functionality to WordPress. So now question arises [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/use-of-hooks-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Convert Currency Using Google API</title>
		<link>http://www.phpzag.com/convert-currency-using-google-api/</link>
		<comments>http://www.phpzag.com/convert-currency-using-google-api/#comments</comments>
		<pubDate>Thu, 16 Aug 2012 10:09:02 +0000</pubDate>
		<dc:creator>Laeeq</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[currency convert using google api]]></category>
		<category><![CDATA[currency convert using php]]></category>

		<guid isPermaLink="false">http://www.phpzag.com/?p=2373</guid>
		<description><![CDATA[As most of us uses Google for searching web information. But very few people know that Google also provides Currency Converter apps for converting currency to our desired currency. We can see the current status of our currency into other currency by going through Google&#8217;s currency converter page. However as a Web developer, sometimes we [...]]]></description>
		<wfw:commentRss>http://www.phpzag.com/convert-currency-using-google-api/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
