<?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>How To PHP - PHP Technology, PHP Tutorial, Database Tutorials, CMS System &#187; Easy PHP</title>
	<atom:link href="http://www.phpmind.com/blog/category/php/easy-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpmind.com/blog</link>
	<description>Future of web development</description>
	<lastBuildDate>Tue, 10 Aug 2010 07:19:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to Stop SQL Injection in MYSQL?</title>
		<link>http://www.phpmind.com/blog/2009/08/how-to-stop-sql-injection-in-mysql/</link>
		<comments>http://www.phpmind.com/blog/2009/08/how-to-stop-sql-injection-in-mysql/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 18:50:21 +0000</pubDate>
		<dc:creator>om</dc:creator>
				<category><![CDATA[Easy PHP]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.phpmind.com/blog/?p=365</guid>
		<description><![CDATA[Every PHP-MYSQL programmer need to know Anti-SQL Injection. Please take a look at very simple function which can save your database!! View Code PHP&#60;?Php &#160; function ClearInput&#40;$dirty&#41;&#123; &#160; if &#40;get_magic_quotes_gpc&#40;&#41;&#41; &#123; &#160; $clean = mysql_real_escape_string&#40;stripslashes&#40;$dirty&#41;&#41;; &#160; &#125;else&#123; &#160; $clean = mysql_real_escape_string&#40;$dirty&#41;; &#160; &#125; return $clean; &#160; &#125; &#160; ?&#62;]]></description>
			<content:encoded><![CDATA[<p>Every PHP-MYSQL programmer need to know Anti-SQL Injection. </p>
<p>Please take a look at very simple function which can save your database!!</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p365code2'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p3652"><td class="code" id="p365code2"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?Php</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> ClearInput<span style="color: #009900;">&#40;</span><span style="color: #000088;">$dirty</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
&nbsp;
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><a href="http://www.php.net/get_magic_quotes_gpc"><span style="color: #990000;">get_magic_quotes_gpc</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
	<span style="color: #000088;">$clean</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/mysql_real_escape_string"><span style="color: #990000;">mysql_real_escape_string</span></a><span style="color: #009900;">&#40;</span><a href="http://www.php.net/stripslashes"><span style="color: #990000;">stripslashes</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$dirty</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #009900;">&#125;</span><span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span>
&nbsp;
	<span style="color: #000088;">$clean</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/mysql_real_escape_string"><span style="color: #990000;">mysql_real_escape_string</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$dirty</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #009900;">&#125;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #000088;">$clean</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.phpmind.com%2Fblog%2F2009%2F08%2Fhow-to-stop-sql-injection-in-mysql%2F&amp;linkname=How%20to%20Stop%20SQL%20Injection%20in%20MYSQL%3F"><img src="http://www.phpmind.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.phpmind.com/blog/2009/08/how-to-stop-sql-injection-in-mysql/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Redirect with PHP?</title>
		<link>http://www.phpmind.com/blog/2009/07/how-to-redirect-with-php/</link>
		<comments>http://www.phpmind.com/blog/2009/07/how-to-redirect-with-php/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 00:13:18 +0000</pubDate>
		<dc:creator>om</dc:creator>
				<category><![CDATA[Easy PHP]]></category>

		<guid isPermaLink="false">http://www.phpmind.com/blog/?p=334</guid>
		<description><![CDATA[You need to replace the URL above with the URL you wish to direct to. Use this simple PHP script to redirect a user from the page they entered to a different web page. View Code PHP&#60;?php header&#40; 'Location: http://www.phpmind.com.com/blog/' &#41; ; ?&#62;]]></description>
			<content:encoded><![CDATA[<p>You need to replace the URL above with the URL you wish to direct to.<br />
Use this simple PHP script to redirect a user from the page they entered to a different web page.</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p334code4'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p3344"><td class="code" id="p334code4"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<a href="http://www.php.net/header"><span style="color: #990000;">header</span></a><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'Location: http://www.phpmind.com.com/blog/'</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.phpmind.com%2Fblog%2F2009%2F07%2Fhow-to-redirect-with-php%2F&amp;linkname=How%20to%20Redirect%20with%20PHP%3F"><img src="http://www.phpmind.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.phpmind.com/blog/2009/07/how-to-redirect-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to display certain number of words from a record?</title>
		<link>http://www.phpmind.com/blog/2009/05/how-to-display-certain-number-of-words-from-a-record/</link>
		<comments>http://www.phpmind.com/blog/2009/05/how-to-display-certain-number-of-words-from-a-record/#comments</comments>
		<pubDate>Fri, 15 May 2009 17:49:44 +0000</pubDate>
		<dc:creator>om</dc:creator>
				<category><![CDATA[Easy PHP]]></category>

		<guid isPermaLink="false">http://www.phpmind.com/blog/?p=332</guid>
		<description><![CDATA[I got good php tutorial to display certain number of words from database; in place of Database record you can use any other regular string. View Code PHP&#60;?php $text = $row_recap&#91;'text'&#93;; if &#40;strlen&#40;$text&#41; &#62; 300&#41; &#123; $ext = &#34;... &#60;a href='readmore.php'&#62;read more&#60;/a&#62;&#34;; &#125; else &#123; $ext = &#34;&#34;; &#125; function elliStr&#40;$s,$n&#41; &#123; for &#40; $x [...]]]></description>
			<content:encoded><![CDATA[<p>I got good php tutorial to display certain number of words from database; in place of Database record you can use any other regular string.</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p332code6'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p3326"><td class="code" id="p332code6"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$text</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$row_recap</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'text'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><a href="http://www.php.net/strlen"><span style="color: #990000;">strlen</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$text</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&gt;</span> <span style="color: #cc66cc;">300</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$ext</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;... &lt;a href='readmore.php'&gt;read more&lt;/a&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$ext</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">function</span> elliStr<span style="color: #009900;">&#40;</span><span style="color: #000088;">$s</span><span style="color: #339933;">,</span><span style="color: #000088;">$n</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$x</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> <span style="color: #000088;">$x</span> <span style="color: #339933;">&lt;</span> <a href="http://www.php.net/strlen"><span style="color: #990000;">strlen</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$s</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000088;">$x</span><span style="color: #339933;">++</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$o</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$n</span><span style="color: #339933;">+</span><span style="color: #000088;">$x</span> <span style="color: #339933;">&gt;=</span> <a href="http://www.php.net/strlen"><span style="color: #990000;">strlen</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$s</span><span style="color: #009900;">&#41;</span>? <span style="color: #000088;">$s</span> <span style="color: #339933;">:</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$s</span><span style="color: #009900;">&#123;</span><span style="color: #000088;">$n</span><span style="color: #339933;">+</span><span style="color: #000088;">$x</span><span style="color: #009900;">&#125;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot; &quot;</span>?
<a href="http://www.php.net/substr"><span style="color: #990000;">substr</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$s</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #000088;">$n</span><span style="color: #339933;">+</span><span style="color: #000088;">$x</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;...&quot;</span> <span style="color: #339933;">:</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$o</span><span style="color: #339933;">!=</span> <span style="color: #0000ff;">&quot;&quot;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #b1b100;">return</span> <span style="color: #000088;">$o</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #b1b100;">echo</span> <span style="color: #009900;">&#40;</span>elliStr<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;<span style="color: #006699; font-weight: bold;">$text</span>&quot;</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">300</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$ext</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.phpmind.com%2Fblog%2F2009%2F05%2Fhow-to-display-certain-number-of-words-from-a-record%2F&amp;linkname=How%20to%20display%20certain%20number%20of%20words%20from%20a%20record%3F"><img src="http://www.phpmind.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.phpmind.com/blog/2009/05/how-to-display-certain-number-of-words-from-a-record/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove HTML Tags from string?</title>
		<link>http://www.phpmind.com/blog/2009/05/how-to-remove-html-tags-from-string/</link>
		<comments>http://www.phpmind.com/blog/2009/05/how-to-remove-html-tags-from-string/#comments</comments>
		<pubDate>Fri, 15 May 2009 16:12:04 +0000</pubDate>
		<dc:creator>om</dc:creator>
				<category><![CDATA[Easy PHP]]></category>

		<guid isPermaLink="false">http://www.phpmind.com/blog/?p=327</guid>
		<description><![CDATA[If your strings have image code, any html code or DIV code you can easily remove using this code. View Code PHP&#60;?Php $str = preg_replace&#40;&#34;/&#60;.*?&#62;/&#34;, &#34;&#34;, $str&#41;; ?&#62; Hope this little code will be useful for you.]]></description>
			<content:encoded><![CDATA[<p>If your strings have image code, any html code or DIV code you can easily remove using this code.</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p327code8'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p3278"><td class="code" id="p327code8"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?Php</span>
<span style="color: #000088;">$str</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/preg_replace"><span style="color: #990000;">preg_replace</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;/&lt;.*?&gt;/&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$str</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>Hope this little code will be useful for you. </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.phpmind.com%2Fblog%2F2009%2F05%2Fhow-to-remove-html-tags-from-string%2F&amp;linkname=How%20to%20remove%20HTML%20Tags%20from%20string%3F"><img src="http://www.phpmind.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.phpmind.com/blog/2009/05/how-to-remove-html-tags-from-string/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to display limited characters?</title>
		<link>http://www.phpmind.com/blog/2009/05/how-to-display-limited-characters/</link>
		<comments>http://www.phpmind.com/blog/2009/05/how-to-display-limited-characters/#comments</comments>
		<pubDate>Fri, 15 May 2009 16:05:52 +0000</pubDate>
		<dc:creator>om</dc:creator>
				<category><![CDATA[Easy PHP]]></category>

		<guid isPermaLink="false">http://www.phpmind.com/blog/?p=321</guid>
		<description><![CDATA[To display limited characters from database or from string there is a ready made function available in php it is called &#8211; substr ( string string, int start [, int length]) View Code PHP&#60;?php $mysite = &#34;phpmind.com&#34;; $string = substr&#40;$mysite, 0,7&#41;; echo $string; ?&#62; Out put will be &#8211; phpmind]]></description>
			<content:encoded><![CDATA[<p>To display limited characters from database or from string there is a ready made function available in php it is called  &#8211; substr ( string string, int start [, int length])</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p321code10'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p32110"><td class="code" id="p321code10"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$mysite</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;phpmind.com&quot;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$string</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/substr"><span style="color: #990000;">substr</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$mysite</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">7</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$string</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>
Out put will be &#8211;  phpmind</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.phpmind.com%2Fblog%2F2009%2F05%2Fhow-to-display-limited-characters%2F&amp;linkname=How%20to%20display%20limited%20characters%3F"><img src="http://www.phpmind.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.phpmind.com/blog/2009/05/how-to-display-limited-characters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to display random record with PHP AND MYSQL?</title>
		<link>http://www.phpmind.com/blog/2009/05/how-to-display-random-record-with-php-and-mysql/</link>
		<comments>http://www.phpmind.com/blog/2009/05/how-to-display-random-record-with-php-and-mysql/#comments</comments>
		<pubDate>Fri, 15 May 2009 15:20:49 +0000</pubDate>
		<dc:creator>om</dc:creator>
				<category><![CDATA[Easy PHP]]></category>

		<guid isPermaLink="false">http://www.phpmind.com/blog/?p=318</guid>
		<description><![CDATA[Here is very simple way to display random records from MYSQL using PHP. View Code MYSQLSELECT * FROM TableName ORDER BY RAND&#40;&#41; LIMIT 0,1]]></description>
			<content:encoded><![CDATA[<p>Here is very simple way to display  random records from MYSQL using PHP.</p>

<div class="wp_codebox_msgheader"><span class="right"></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p318code12'); return false;">View Code</a> MYSQL</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table width="100%" ><tr id="p31812"><td class="code" id="p318code12"><pre class="mysql" style="font-family:monospace;"><a href="http://search.mysql.com/search?site=refman-%35%31&amp;q=SELECT"><span style="color: #990099; font-weight: bold;">SELECT</span></a> <span style="color: #CC0099;">*</span> <a href="http://search.mysql.com/search?site=refman-%35%31&amp;q=FROM"><span style="color: #990099; font-weight: bold;">FROM</span></a> TableName <a href="http://search.mysql.com/search?site=refman-%35%31&amp;q=ORDER%20BY"><span style="color: #990099; font-weight: bold;">ORDER BY</span></a> <a href="http://dev.mysql.com/doc/refman/%35%2E%31/en/numeric-functions.html"><span style="color: #000099;">RAND</span></a><span style="color: #FF00FF;">&#40;</span><span style="color: #FF00FF;">&#41;</span> <a href="http://search.mysql.com/search?site=refman-%35%31&amp;q=LIMIT"><span style="color: #990099; font-weight: bold;">LIMIT</span></a> <span style="color: #008080;">0</span><span style="color: #000033;">,</span><span style="color: #008080;">1</span></pre></td></tr></table></div>

<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.phpmind.com%2Fblog%2F2009%2F05%2Fhow-to-display-random-record-with-php-and-mysql%2F&amp;linkname=How%20to%20display%20random%20record%20with%20PHP%20AND%20MYSQL%3F"><img src="http://www.phpmind.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.phpmind.com/blog/2009/05/how-to-display-random-record-with-php-and-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
