<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: A Register/Login Class</title>
	<atom:link href="http://www.papaface.com/blog/2007/12/30/a-registerlogin-class/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.papaface.com/blog/2007/12/30/a-registerlogin-class/</link>
	<description>Interesting stuff guaranteed!</description>
	<lastBuildDate>Thu, 19 Mar 2009 20:03:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: papa_face</title>
		<link>http://www.papaface.com/blog/2007/12/30/a-registerlogin-class/comment-page-1/#comment-40</link>
		<dc:creator>papa_face</dc:creator>
		<pubDate>Sun, 20 Jan 2008 12:43:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.papaface.com/blog/2007/12/30/a-registerlogin-class/#comment-40</guid>
		<description>Hello,
I will try and put up a more detailed example of how to do this in the near future.</description>
		<content:encoded><![CDATA[<p>Hello,<br />
I will try and put up a more detailed example of how to do this in the near future.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Micah</title>
		<link>http://www.papaface.com/blog/2007/12/30/a-registerlogin-class/comment-page-1/#comment-38</link>
		<dc:creator>Micah</dc:creator>
		<pubDate>Sun, 20 Jan 2008 08:28:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.papaface.com/blog/2007/12/30/a-registerlogin-class/#comment-38</guid>
		<description>I am trying to startup a web site where i would like to have a vip section.  I assume this code is probably what im looking for.  My problem is, i am VERY NEW to web design &amp; all that stuff &amp; i am unfamilliar with how to implement this into my existing webpages....i know it&#039;s .php &amp; it needs to be linked to the mysql database but because im so new @ this, i really dont know how to do any of that.  Could you put up examples of how to imbed this into an existing basic webpage? I really dont know enough about it to do it &amp; im running on a budget &amp; a deadline!  Thank you in advance for your help!</description>
		<content:encoded><![CDATA[<p>I am trying to startup a web site where i would like to have a vip section.  I assume this code is probably what im looking for.  My problem is, i am VERY NEW to web design &amp; all that stuff &amp; i am unfamilliar with how to implement this into my existing webpages&#8230;.i know it&#8217;s .php &amp; it needs to be linked to the mysql database but because im so new @ this, i really dont know how to do any of that.  Could you put up examples of how to imbed this into an existing basic webpage? I really dont know enough about it to do it &amp; im running on a budget &amp; a deadline!  Thank you in advance for your help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: papa_face</title>
		<link>http://www.papaface.com/blog/2007/12/30/a-registerlogin-class/comment-page-1/#comment-18</link>
		<dc:creator>papa_face</dc:creator>
		<pubDate>Sat, 05 Jan 2008 20:01:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.papaface.com/blog/2007/12/30/a-registerlogin-class/#comment-18</guid>
		<description>Yes no problem :)
I used this SQL with this class. The level field denotes a regular user or a admin user. An admin user has a level 2, and a normal user has a level 1.
&lt;pre lang=&quot;SQL&quot;&gt;
CREATE TABLE `members` (
  `id` int(11) NOT NULL auto_increment,
  `username` varchar(255) NOT NULL,
  `password` varchar(32) NOT NULL,
  `email` varchar(255) NOT NULL,
  `level` int(1) NOT NULL default &#039;1&#039; COMMENT &#039;1=normal 2=admin&#039;,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Yes no problem <img src='http://www.papaface.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
I used this SQL with this class. The level field denotes a regular user or a admin user. An admin user has a level 2, and a normal user has a level 1.</p>
<pre lang="SQL">
CREATE TABLE `members` (
  `id` int(11) NOT NULL auto_increment,
  `username` varchar(255) NOT NULL,
  `password` varchar(32) NOT NULL,
  `email` varchar(255) NOT NULL,
  `level` int(1) NOT NULL default '1' COMMENT '1=normal 2=admin',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mo</title>
		<link>http://www.papaface.com/blog/2007/12/30/a-registerlogin-class/comment-page-1/#comment-17</link>
		<dc:creator>Mo</dc:creator>
		<pubDate>Sat, 05 Jan 2008 19:51:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.papaface.com/blog/2007/12/30/a-registerlogin-class/#comment-17</guid>
		<description>Hi,

Can you provide a sql file that I can use to set up the database please ??

Thanks</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Can you provide a sql file that I can use to set up the database please ??</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: papa_face</title>
		<link>http://www.papaface.com/blog/2007/12/30/a-registerlogin-class/comment-page-1/#comment-10</link>
		<dc:creator>papa_face</dc:creator>
		<pubDate>Thu, 03 Jan 2008 18:10:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.papaface.com/blog/2007/12/30/a-registerlogin-class/#comment-10</guid>
		<description>What is the code you used?
Please show me the line that you received the error on :)
Have you made sure that you have included the class in the page?</description>
		<content:encoded><![CDATA[<p>What is the code you used?<br />
Please show me the line that you received the error on <img src='http://www.papaface.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Have you made sure that you have included the class in the page?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.papaface.com/blog/2007/12/30/a-registerlogin-class/comment-page-1/#comment-9</link>
		<dc:creator>John</dc:creator>
		<pubDate>Thu, 03 Jan 2008 17:48:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.papaface.com/blog/2007/12/30/a-registerlogin-class/#comment-9</guid>
		<description>I get this error - &quot;No input file specified.&quot;</description>
		<content:encoded><![CDATA[<p>I get this error &#8211; &#8220;No input file specified.&#8221;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

