<?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>FLASHNUTZ &#187; PHP</title>
	<atom:link href="http://www.flashnutz.com/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flashnutz.com</link>
	<description>HELPING WEB DEVELOPERS DEVELOP</description>
	<lastBuildDate>Tue, 13 Jul 2010 05:02:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Find links within text and convert to active links with PHP</title>
		<link>http://www.flashnutz.com/2010/07/find-links-within-text-and-convert-to-active-links-with-php/</link>
		<comments>http://www.flashnutz.com/2010/07/find-links-within-text-and-convert-to-active-links-with-php/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 02:36:31 +0000</pubDate>
		<dc:creator>Flashnutz</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[eregi_replace]]></category>
		<category><![CDATA[text URL to HTML URL]]></category>

		<guid isPermaLink="false">http://www.flashnutz.com/2010/07/find-links-within-text-and-convert-to-active-links-with-php/</guid>
		<description><![CDATA[Recently I have had to integrate some tweets into a clients website via RSS. The problem I found is that the links are hidden in the description and are not active. The solution is as simple as using 3 regular expressions and replace the text URL with a HTML URL using PHPs eregi_replace function. &#160; [...]]]></description>
		<wfw:commentRss>http://www.flashnutz.com/2010/07/find-links-within-text-and-convert-to-active-links-with-php/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>List files in a directory using php</title>
		<link>http://www.flashnutz.com/2009/09/working-with-opendir-in-php/</link>
		<comments>http://www.flashnutz.com/2009/09/working-with-opendir-in-php/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 03:20:48 +0000</pubDate>
		<dc:creator>Flashnutz</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[document_root]]></category>
		<category><![CDATA[list files in a directory]]></category>
		<category><![CDATA[opendir]]></category>
		<category><![CDATA[phpinfo]]></category>
		<category><![CDATA[readdir]]></category>

		<guid isPermaLink="false">http://www.flashnutz.com/2009/09/working-with-opendir-in-php/</guid>
		<description><![CDATA[To display a list of files within a directory using PHP you need to use opendir() and readdir(). Below is a function that will return the list of files and remove the . and .. from the listing. &#160; //full path of directory $dir = &#34;/var/www/images/&#34;; &#160; function listFiles&#40;$dir&#41;&#123; &#160; //open directory and read its [...]]]></description>
		<wfw:commentRss>http://www.flashnutz.com/2009/09/working-with-opendir-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dynamic variable names in PHP</title>
		<link>http://www.flashnutz.com/2009/08/dynamic-variable-names-in-php/</link>
		<comments>http://www.flashnutz.com/2009/08/dynamic-variable-names-in-php/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 02:09:24 +0000</pubDate>
		<dc:creator>Flashnutz</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[dynamic variable in php]]></category>
		<category><![CDATA[dynamic variables]]></category>

		<guid isPermaLink="false">http://www.flashnutz.com/?p=159</guid>
		<description><![CDATA[I'm going to show you how to use dynamic variable names in php. It's quite simple, just put your variable name in between {} symbols. // declare prefix. In a loop this would probably be a number. $prefix = &#34;pfx&#34;; &#160; // build your variable $&#123;&#34;varname_{$prefix}&#34;&#125; = &#34;success&#34;; &#160; //This would output &#34;success&#34; echo $varname_pfx; [...]]]></description>
		<wfw:commentRss>http://www.flashnutz.com/2009/08/dynamic-variable-names-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Images not working in dompdf</title>
		<link>http://www.flashnutz.com/2009/08/images-not-working-in-dompdf/</link>
		<comments>http://www.flashnutz.com/2009/08/images-not-working-in-dompdf/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 03:38:38 +0000</pubDate>
		<dc:creator>Flashnutz</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[dompdf]]></category>
		<category><![CDATA[html to pdf]]></category>
		<category><![CDATA[html2pdf]]></category>
		<category><![CDATA[images not working in pdf]]></category>

		<guid isPermaLink="false">http://www.flashnutz.com/2009/08/images-not-working-with-dompdf/</guid>
		<description><![CDATA[What is dompdf?  Well basically its a HTML to PDF converter. It's rendering engine is built in PHP and is style-driven which means it will download and read external stylesheets, inline style tags, and the style attributes of individual HTML elements. I won't go into detail of how to use it (unless you want me [...]]]></description>
		<wfw:commentRss>http://www.flashnutz.com/2009/08/images-not-working-in-dompdf/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>
