<?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 Tutorials Code Snippets and Php Tips &#187; Complete Scripts</title>
	<atom:link href="http://readytousesolutions.com/phpblog/category/complete-scripts/feed/" rel="self" type="application/rss+xml" />
	<link>http://readytousesolutions.com/phpblog</link>
	<description>PHP tutorials - Examples of the most useful scripts</description>
	<lastBuildDate>Thu, 23 Sep 2010 06:54:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>PHP Tutorial : Results Pagination</title>
		<link>http://readytousesolutions.com/phpblog/php-tutorial-results-pagination/</link>
		<comments>http://readytousesolutions.com/phpblog/php-tutorial-results-pagination/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 05:14:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Complete Scripts]]></category>
		<category><![CDATA[paginate]]></category>
		<category><![CDATA[pagination]]></category>
		<category><![CDATA[php links]]></category>
		<category><![CDATA[php navigation]]></category>
		<category><![CDATA[php paginate]]></category>
		<category><![CDATA[php paginate entries]]></category>
		<category><![CDATA[php paginate results]]></category>
		<category><![CDATA[php pagination]]></category>
		<category><![CDATA[php results pagination]]></category>
		<category><![CDATA[results pagination]]></category>
		<category><![CDATA[set a number of results per page]]></category>
		<category><![CDATA[split mysql results into page]]></category>

		<guid isPermaLink="false">http://www.crivionweb.com/phpblog/?p=284</guid>
		<description><![CDATA[A very usefull and common subject : php pagination. You need this when you have a lot of entries in the database and don&#8217;t want to show them in a single page, here comes the results pagination in php. This &#8230; <a href="http://readytousesolutions.com/phpblog/php-tutorial-results-pagination/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A very usefull and common subject : php pagination. You need this when you have a lot of entries in the database and don&#8217;t want to show them in a single page, here comes the results pagination in php. This works pretty simple, not that complex : firstly we calculate the total ammount of entries, then the numbers of page needed to show everthing, and, of course, how many results per page. Finaly, we&#8217;ll print out the entries and links for next, previous and page numbers.</p>
<pre class="php">
//include database connection (check previous posts to get this one)
include(&#039;dbConnection.php&#039;);
//get the number of total rows
$query = &quot;SELECT * FROM TableName&quot;;
$result = mysql_query($query);
// Number of records found
$num_record = mysql_num_rows($result);
// Number of results per page
$display = 5;
if(isset($_GET[&#039;page&#039;]) {
$currentPage = $_GET[&#039;page&#039;];
}else{
$currentPage = 1;
}
//last page
$lastPage = ceil($num_record/$display);
//limit in the query thing
$limitQ = &#039;LIMIT &#039; .($currentPage - 1) * $display .&#039;,&#039; .$display;
//normal query and print results
$query = &quot;SELECT * FROM TableName $limitQ&quot;;
$result = mysql_query($query);
//here you do your loop like
while($row=@mysql_fetch_object($result)) {
print &quot;$row-&gt;FieldName&quot;;
}
//pagination navigation (links)
//previous
if ($currentPage == 1) {
print &quot;Prev &quot;;
} else {
print &quot;<span class="htmlAnchorTag">&lt;a href=pagename.php?page=1&gt;</span>First page<span class="htmlAnchorTag">&lt;/a&gt;</span> &quot;;
$previousPage = $currentPage-1;
print &quot;<span class="htmlAnchorTag">&lt;a href=pagename.php?page=$previousPage&gt;</span>Previous<span class="htmlAnchorTag">&lt;/a&gt;</span>&quot;;
}
print &quot; { Page $currentPage of $lastPage } &quot;;
//for next pages links
if ($currentPage== $lastPage) {
print &quot;Next last&quot;;
} else {
$nextPage = $currentPage+1;
print &quot; <span class="htmlAnchorTag">&lt;a href=pagename.php?page=$nextPage&gt;</span>NEXT<span class="htmlAnchorTag">&lt;/a&gt;</span> &quot;;
print &quot; <span class="htmlAnchorTag">&lt;a href=pagename.php?page=$lastPage&gt;</span>LAST<span class="htmlAnchorTag">&lt;/a&gt;</span> &quot;;
}
?&gt;
</pre>
<p>Now you can use this pagination to split your mysql results into multiple webpages!</p>
]]></content:encoded>
			<wfw:commentRss>http://readytousesolutions.com/phpblog/php-tutorial-results-pagination/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Tutorial : Membership script &#8211; Users Logout</title>
		<link>http://readytousesolutions.com/phpblog/php-tutorial-membership-script-users-logout/</link>
		<comments>http://readytousesolutions.com/phpblog/php-tutorial-membership-script-users-logout/#comments</comments>
		<pubDate>Sun, 14 Jun 2009 05:23:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Complete Scripts]]></category>
		<category><![CDATA[logout function]]></category>
		<category><![CDATA[php logout]]></category>
		<category><![CDATA[php user logout function]]></category>
		<category><![CDATA[users logout]]></category>

		<guid isPermaLink="false">http://www.crivionweb.com/phpblog/?p=279</guid>
		<description><![CDATA[Final step and the most easiest part is now users logging out. Just build a page called logout.php and put a link to it everywhere you want to give the option to users to logout &#38; here&#8217;s the function: &#60;?php &#8230; <a href="http://readytousesolutions.com/phpblog/php-tutorial-membership-script-users-logout/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Final step and the most easiest part is now users logging out. Just build a page called logout.php and put a link to it everywhere you want to give the option to users to logout &amp; here&#8217;s the function:</p>
<pre class="php">
<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span>
<span class="phpFunctionKeyword">function</span><span class="htmlText"> logoutUser</span><span class="phpOperator">(</span><span class="phpOperator">)</span> <span class="phpOperator">{</span>
<span class="phpFunction">session_unset</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpFunction">session_destroy</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpFunction">header</span><span class="phpOperator">(</span><span class="phpString">"Location<span class="phpOperator">:</span> homePage.php"</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpFunction">exit</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpOperator">}</span>
<span class="phpComment">//here&#039;s how you put it in action
</span>
<span class="htmlText">
logoutUser</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
</pre>
<p>Extraordinary,</p>
<p>Now you know how to build a complete membershipt script/site with php including registering module, logiging in &amp; check this thing, and of course users logout module.</p>
]]></content:encoded>
			<wfw:commentRss>http://readytousesolutions.com/phpblog/php-tutorial-membership-script-users-logout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Tutorial : Membership script &#8211; Users Login</title>
		<link>http://readytousesolutions.com/phpblog/php-tutorial-membership-script-users-login/</link>
		<comments>http://readytousesolutions.com/phpblog/php-tutorial-membership-script-users-login/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 14:27:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Complete Scripts]]></category>
		<category><![CDATA[check logged in user]]></category>
		<category><![CDATA[login area]]></category>
		<category><![CDATA[membership script]]></category>
		<category><![CDATA[php login user]]></category>
		<category><![CDATA[php membership]]></category>
		<category><![CDATA[users login]]></category>

		<guid isPermaLink="false">http://www.crivionweb.com/phpblog/?p=273</guid>
		<description><![CDATA[Second day, second tutorial. I will continue with the membership script : after I shown you how to create the php register function, I will show today how to create the php login function and also I will show you &#8230; <a href="http://readytousesolutions.com/phpblog/php-tutorial-membership-script-users-login/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Second day, second tutorial.<br />
I will continue with the membership script : after I shown you how to create the php register function, I will show today how to create the php login function and also I will show you how to check if a user is logged in or not.</p>
<pre class="php">
<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span>
<span class="phpFunctionKeyword">function</span><span class="htmlText"> loginUser</span><span class="phpOperator">(</span>$user, $pass<span class="phpOperator">)</span> <span class="phpOperator">{</span>
<span class="phpKeyword">
if<span class="phpOperator">(</span></span><span class="phpFunction">empty</span><span class="phpOperator">(</span>$user<span class="phpOperator">)</span> <span class="phpOperator">|</span><span class="phpOperator">|</span> <span class="phpFunction">empty</span><span class="phpOperator">(</span>$pass<span class="phpOperator">)</span><span class="phpOperator">)</span> <span class="phpOperator">{</span>
<span class="phpFunction">exit</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpKeyword"><span class="phpOperator">}</span><span class="htmlText">else</span><span class="phpOperator">{</span></span>
$user <span class="phpOperator">=</span><span class="htmlText"> addentities</span><span class="phpOperator">(</span>$user<span class="phpOperator">)</span><span class="phpText">;</span>
$pass <span class="phpOperator">=</span><span class="htmlText"> addentities</span><span class="phpOperator">(</span>$pass<span class="phpOperator">)</span><span class="phpText">;</span>
$sql <span class="phpOperator">=</span> <span class="phpString">"select * from users where user <span class="phpOperator">=</span> <span class="phpString">'$user'</span><span class="htmlText"> and pass </span><span class="phpOperator">=</span> <span class="phpString">'$pass'</span>"</span><span class="phpText">;</span>
$rs <span class="phpOperator">=</span> <span class="phpFunction">mysql_query</span><span class="phpOperator">(</span>$sql<span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpKeyword">
if<span class="phpOperator">(</span></span>$rs<span class="phpOperator">)</span> <span class="phpOperator">{</span>
<span class="phpKeyword">
if<span class="phpOperator">(</span></span><span class="phpFunction">mysql_num_rows</span><span class="phpOperator">(</span>$rs<span class="phpOperator">)</span> <span class="phpOperator">!</span><span class="phpOperator">=</span> <span class="phpNumber">0</span><span class="phpOperator">)</span> <span class="phpOperator">{</span>
$row<span class="phpOperator">=</span>@<span class="phpFunction">mysql_fetch_object</span><span class="phpOperator">(</span>$rs<span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpScriptVar">$_SESSION</span><span class="phpOperator">[</span><span class="phpString">'logged'</span><span class="phpOperator">]</span> <span class="phpOperator">=</span> <span class="phpString">"yes"</span><span class="phpText">;</span>
<span class="phpScriptVar">$_SESSION</span><span class="phpOperator">[</span><span class="phpString">'user'</span><span class="phpOperator">]</span> <span class="phpOperator">=</span> $user<span class="phpText">;</span>
<span class="htmlText">
refreshPage</span><span class="phpOperator">(</span><span class="phpNumber">0</span>, <span class="phpScriptVar">$_SERVER</span><span class="phpOperator">[</span><span class="phpString">'PHP_SELF'</span><span class="phpOperator">]</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpKeyword"><span class="phpOperator">}</span><span class="htmlText">else</span><span class="phpOperator">{</span></span>
<span class="htmlText">
print </span><span class="phpString">"Wrong username and password"</span><span class="phpText">;</span>
<span class="phpOperator">}</span>
<span class="phpOperator">}</span>
<span class="phpOperator">}</span>
<span class="phpOperator">}</span>
<span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
</pre>
<p>Now, how simple is to check if a user is logged in?</p>
<pre class="php">
<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span>
<span class="phpKeyword">
if<span class="phpOperator">(</span></span><span class="htmlText">checkLogged</span><span class="phpOperator">(</span><span class="phpOperator">)</span> <span class="phpOperator"><span class="phpOperator">=</span>=</span><span class="phpKeyword"> false<span class="phpOperator">)</span></span> <span class="phpOperator">{</span>
<span class="htmlText">
print </span><span class="phpString">"You are unauthorized to see this page, please login<span class="phpOperator">!</span>"</span><span class="phpText">;</span>
<span class="phpKeyword"><span class="phpOperator">}</span><span class="htmlText">elseif</span><span class="phpOperator">(</span></span><span class="htmlText">checkLogged</span><span class="phpOperator">(</span><span class="phpOperator">)</span> <span class="phpOperator"><span class="phpOperator">=</span>=</span><span class="phpKeyword"> true<span class="phpOperator">)</span></span> <span class="phpOperator">{</span>
<span class="htmlText">
print </span><span class="phpString">"Welcome <span class="phpScriptVar">$_SESSION</span><span class="phpOperator">[</span><span class="htmlText">user</span><span class="phpOperator">]</span>"</span><span class="phpText">;</span>
<span class="phpOperator">}</span>
<span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
</pre>
<p>Please note that into head of the files, at the very begining, before outputing anything else you must add session_start(); function! Check this blog for detailed instructions on how to use sessions.</p>
<p>Good luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://readytousesolutions.com/phpblog/php-tutorial-membership-script-users-login/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Tutorial : Membership script &#8211; Users Registration</title>
		<link>http://readytousesolutions.com/phpblog/php-tutorial-membership-script-users-registration/</link>
		<comments>http://readytousesolutions.com/phpblog/php-tutorial-membership-script-users-registration/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 05:15:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Complete Scripts]]></category>
		<category><![CDATA[membership application]]></category>
		<category><![CDATA[membership script]]></category>
		<category><![CDATA[php members]]></category>
		<category><![CDATA[php membership script]]></category>
		<category><![CDATA[php register]]></category>
		<category><![CDATA[php register form]]></category>
		<category><![CDATA[php users registration]]></category>
		<category><![CDATA[register]]></category>
		<category><![CDATA[register form]]></category>
		<category><![CDATA[users registration]]></category>

		<guid isPermaLink="false">http://www.crivionweb.com/phpblog/?p=260</guid>
		<description><![CDATA[Hello, I&#8217;ve just created a brand new category called Complete Scripts. In this one you will find complete solutions of applications. The first tutorial is called how to create a membership script with user registration. I will write here a &#8230; <a href="http://readytousesolutions.com/phpblog/php-tutorial-membership-script-users-registration/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hello, I&#8217;ve just created a brand new category called Complete Scripts. In this one you will find complete solutions of applications.</p>
<p>The first tutorial is called how to create a membership script with user registration. I will write here a function which will do it! We will have database structure like this :</p>
<p>CREATE TABLE IF NOT EXISTS `users` (<br />
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,<br />
`user` varchar(255) NOT NULL,<br />
`pass` varchar(255) NOT NULL,<br />
PRIMARY KEY (`id`)<br />
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;</p>
<p>After this, here is the function to create new users and insert them into database: &#8211; first, create a .php page called functions.php</p>
<pre class="php">
<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span>
<span class="phpComment">//Membership Script - Users Registration Function
</span>
<span class="phpFunctionKeyword">function</span><span class="htmlText"> registerNewMember</span><span class="phpOperator">(</span>$user, $pass<span class="phpOperator">)</span> <span class="phpOperator">{</span>
$tableUsers <span class="phpOperator">=</span> <span class="phpString">"users"</span><span class="phpText">;</span>
<span class="phpKeyword">
if<span class="phpOperator">(</span></span><span class="phpFunction">empty</span><span class="phpOperator">(</span>$user<span class="phpOperator">)</span> <span class="phpOperator">|</span><span class="phpOperator">|</span> <span class="phpFunction">empty</span><span class="phpOperator">(</span>$pass<span class="phpOperator">)</span><span class="phpOperator">)</span> <span class="phpOperator">{</span>
<span class="phpFunction">exit</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpKeyword"><span class="phpOperator">}</span><span class="htmlText">else</span><span class="phpOperator">{</span></span>
$user <span class="phpOperator">=</span> <span class="phpFunction">addslashes</span><span class="phpOperator">(</span><span class="htmlText">mysql_real_escape_string</span><span class="phpOperator">(</span>$user<span class="phpOperator">)</span><span class="phpOperator">)</span><span class="phpText">;</span>
$pass <span class="phpOperator">=</span> <span class="phpFunction">addslashes</span><span class="phpOperator">(</span><span class="htmlText">mysql_real_escape_string</span><span class="phpOperator">(</span>$pass<span class="phpOperator">)</span><span class="phpOperator">)</span><span class="phpText">;</span>
$sql <span class="phpOperator">=</span> <span class="phpString">"insert into $tableUsers values <span class="phpOperator">(</span>null, <span class="phpString">'$user'</span>, <span class="phpString">'$pass'</span><span class="phpOperator">)</span>"</span><span class="phpText">;</span>
$rs <span class="phpOperator">=</span> <span class="phpFunction">mysql_query</span><span class="phpOperator">(</span>$sql<span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpKeyword">
if<span class="phpOperator">(</span></span>$rs<span class="phpOperator">)</span>
<span class="phpOperator">{</span>
$result <span class="phpOperator">=</span> <span class="phpString">"ok"</span><span class="phpText">;</span>
<span class="phpKeyword"><span class="phpOperator">}</span><span class="htmlText">else</span><span class="phpOperator">{</span></span>
$result <span class="phpOperator">=</span> <span class="phpString">"fail"</span><span class="phpText">;</span>
<span class="phpOperator">}</span>
<span class="phpOperator">}</span>
<span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
</pre>
<p>Now we need to create a page with a form where users will type their desired user &amp; pass (please note we need to include database connection file and functions one:</p>
<pre class="php">
<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span>
<span class="phpComment">/<span class="phpKeyword"><span class="phpKeyword">/include </span></span>database connection
</span>
<span class="phpKeyword"><span class="phpKeyword">
include<span class="phpOperator">(</span></span></span><span class="phpString">'dbConnection<span class="phpOperator">.</span>php'</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpComment">/<span class="phpKeyword"><span class="phpKeyword">/include </span></span><span class="phpFunctionKeyword">function</span><span class="htmlText">s</span><span class="phpOperator">.</span>php
</span>
<span class="phpKeyword"><span class="phpKeyword">
include<span class="phpOperator">(</span></span></span><span class="phpString">'<span class="phpFunctionKeyword">function</span><span class="htmlText">s</span><span class="phpOperator">.</span>php'</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpComment">//check<span class="phpKeyword"> if </span>registration form was submitted
</span>
<span class="phpKeyword">
if<span class="phpOperator">(</span></span><span class="phpFunction">isset</span><span class="phpOperator">(</span><span class="phpScriptVar">$_POST</span><span class="phpOperator">[</span><span class="phpString">'sb'</span><span class="phpOperator">]</span><span class="phpOperator">)</span><span class="phpOperator">)</span> <span class="phpOperator">{</span>
<span class="phpFunction">extract</span><span class="phpOperator">(</span><span class="phpScriptVar">$_POST</span><span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpKeyword">
if<span class="phpOperator">(</span></span><span class="htmlText">registerNewMember</span><span class="phpOperator">(</span>$username, $password<span class="phpOperator">)</span> <span class="phpOperator"><span class="phpOperator">=</span>=</span> <span class="phpString">"ok"</span><span class="phpOperator">)</span><span class="phpOperator">)</span> <span class="phpOperator">{</span>
<span class="htmlText">
print </span><span class="phpString">"You are now registered"</span><span class="phpText">;</span>
<span class="phpKeyword"><span class="phpOperator">}</span><span class="htmlText">else</span><span class="phpOperator">{</span></span>
<span class="htmlText">
print </span><span class="phpString">"Not able to add<span class="phpKeyword"> new </span>member"</span><span class="phpText">;</span>
<span class="phpOperator">}</span>
<span class="phpOperator">}</span>
<span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
<span class="htmlFormTag">&lt;form action=<span class="htmlAttributeValue">&quot;&quot;</span> method=<span class="htmlAttributeValue">&quot;POST&quot;</span>&gt;</span>
Pickup  a new username : <span class="htmlFormTag">&lt;input type=<span class="htmlAttributeValue">&quot;text&quot;</span> name=<span class="htmlAttributeValue">&quot;username&quot;</span>&gt;</span><span class="htmlOtherTag">&lt;br/&gt;</span>
Pikcup a brand new password : <span class="htmlFormTag">&lt;input type=<span class="htmlAttributeValue">&quot;password&quot;</span> name=<span class="htmlAttributeValue">&quot;password&quot;</span>&gt;</span><span class="htmlOtherTag">&lt;br/&gt;</span>
<span class="htmlFormTag">&lt;input type=<span class="htmlAttributeValue">&quot;submit&quot;</span> name=<span class="htmlAttributeValue">&quot;sb&quot;</span> id=<span class="htmlAttributeValue">&quot;sb&quot;</span> value=<span class="htmlAttributeValue">&quot;Register me!&quot;</span>&gt;</span>
<span class="htmlFormTag">&lt;/form&gt;</span>
</pre>
<p>PS : For database connection please remember <a href="http://www.crivionweb.com/phpblog/php-tutorial-connecting-to-mysql-database-via-php/">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://readytousesolutions.com/phpblog/php-tutorial-membership-script-users-registration/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

