<?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: Finally, the simple pagination class</title>
	<atom:link href="http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/</link>
	<description>A web designoper's journal</description>
	<lastBuildDate>Thu, 11 Mar 2010 23:53:29 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Tommy</title>
		<link>http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/comment-page-3/#comment-5880</link>
		<dc:creator>Tommy</dc:creator>
		<pubDate>Wed, 10 Mar 2010 23:42:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/#comment-5880</guid>
		<description>Ok never mind, I had $pages-&gt;paginate(); in the wrong place.
It needs to be after setting all the VAR. but before the SQL with the LIMIT.

But now another problem.
If I click the &quot;ALL&quot; link then click the page &quot;1&quot; link if does not work.
The HTML code for that link is &quot;&lt;a href=&quot;#&quot; rel=&quot;nofollow&quot;&gt;1&lt;/a&gt;&quot;
witch makes the link &quot;http://palmentere.tomswebcorner.com/pages/home.php?page=1&amp;ipp=All#&quot;
Is there a fix?

Thx Tommy</description>
		<content:encoded><![CDATA[<p>Ok never mind, I had $pages-&gt;paginate(); in the wrong place.<br />
It needs to be after setting all the VAR. but before the SQL with the LIMIT.</p>
<p>But now another problem.<br />
If I click the &#8220;ALL&#8221; link then click the page &#8220;1&#8243; link if does not work.<br />
The HTML code for that link is &#8220;<a href="#" rel="nofollow">1</a>&#8221;<br />
witch makes the link &#8220;http://palmentere.tomswebcorner.com/pages/home.php?page=1&amp;ipp=All#&#8221;<br />
Is there a fix?</p>
<p>Thx Tommy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tommy</title>
		<link>http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/comment-page-3/#comment-5879</link>
		<dc:creator>Tommy</dc:creator>
		<pubDate>Wed, 10 Mar 2010 23:30:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/#comment-5879</guid>
		<description>The $pages-&gt;limit is not working in my SQL.
If you goto http://palmentere.tomswebcorner.com you will see what I mean.
Please help.</description>
		<content:encoded><![CDATA[<p>The $pages-&gt;limit is not working in my SQL.<br />
If you goto <a href="http://palmentere.tomswebcorner.com" rel="nofollow">http://palmentere.tomswebcorner.com</a> you will see what I mean.<br />
Please help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DBowers</title>
		<link>http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/comment-page-3/#comment-5820</link>
		<dc:creator>DBowers</dc:creator>
		<pubDate>Fri, 19 Feb 2010 15:27:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/#comment-5820</guid>
		<description>Anyone figure out how to put more than one instance of this on the same page? Great script by the way!
Cheers!</description>
		<content:encoded><![CDATA[<p>Anyone figure out how to put more than one instance of this on the same page? Great script by the way!<br />
Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/comment-page-3/#comment-5809</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Wed, 17 Feb 2010 09:38:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/#comment-5809</guid>
		<description>I have been checking for pagination classes and this is the best so far. Thanks alot to the developer of the class. Please keep it up.0</description>
		<content:encoded><![CDATA[<p>I have been checking for pagination classes and this is the best so far. Thanks alot to the developer of the class. Please keep it up.0</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trutz</title>
		<link>http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/comment-page-3/#comment-5797</link>
		<dc:creator>Trutz</dc:creator>
		<pubDate>Sat, 13 Feb 2010 23:10:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/#comment-5797</guid>
		<description>I got the same error with negative limits when the database query returned no entries. My workaround is that I check the number of results before I initialize the pagination class and adjust my SQL statement accordingly. 

Great class!</description>
		<content:encoded><![CDATA[<p>I got the same error with negative limits when the database query returned no entries. My workaround is that I check the number of results before I initialize the pagination class and adjust my SQL statement accordingly. </p>
<p>Great class!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay Gilford</title>
		<link>http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/comment-page-3/#comment-5783</link>
		<dc:creator>Jay Gilford</dc:creator>
		<pubDate>Thu, 11 Feb 2010 03:19:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/#comment-5783</guid>
		<description>Very nice pagination class, and very simple to use. I&#039;ve created one myself (check out my website). If you have any suggestions on how to improve it I&#039;d be more than happy to hear them :)</description>
		<content:encoded><![CDATA[<p>Very nice pagination class, and very simple to use. I&#8217;ve created one myself (check out my website). If you have any suggestions on how to improve it I&#8217;d be more than happy to hear them <img src='http://www.catchmyfame.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/comment-page-3/#comment-5683</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 02 Feb 2010 03:13:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/#comment-5683</guid>
		<description>&lt;b&gt;@michael and tanner&lt;/b&gt;
Please either post your code, links to your code, or email me your code so I can see what you&#039;re doing. Ideally a way to see your database would be helpful.</description>
		<content:encoded><![CDATA[<p><b>@michael and tanner</b><br />
Please either post your code, links to your code, or email me your code so I can see what you&#8217;re doing. Ideally a way to see your database would be helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tanner</title>
		<link>http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/comment-page-3/#comment-5681</link>
		<dc:creator>tanner</dc:creator>
		<pubDate>Tue, 02 Feb 2010 02:19:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/#comment-5681</guid>
		<description>same with michael, i got this limit error too.</description>
		<content:encoded><![CDATA[<p>same with michael, i got this limit error too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/comment-page-3/#comment-5674</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sun, 31 Jan 2010 19:32:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/#comment-5674</guid>
		<description>&lt;strong&gt;@Jaluzo&lt;/strong&gt;
It&#039;s actually a problem with the MySQL sample database. They don&#039;t have any cities for Antarctica in the cities table. I&#039;ve removed Antarctica from the Country table to fix this.</description>
		<content:encoded><![CDATA[<p><strong>@Jaluzo</strong><br />
It&#8217;s actually a problem with the MySQL sample database. They don&#8217;t have any cities for Antarctica in the cities table. I&#8217;ve removed Antarctica from the Country table to fix this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaluzo</title>
		<link>http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/comment-page-3/#comment-5673</link>
		<dc:creator>Jaluzo</dc:creator>
		<pubDate>Sun, 31 Jan 2010 14:14:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.catchmyfame.com/2007/07/28/finally-the-simple-pagination-class/#comment-5673</guid>
		<description>Hello, 
In the example http://www.catchmyfame.com/paginator/example-form.php, why it is impossible to post Antarctica ?
What modification is to be made on the script ?
Thank you for your reponse</description>
		<content:encoded><![CDATA[<p>Hello,<br />
In the example <a href="http://www.catchmyfame.com/paginator/example-form.php" rel="nofollow">http://www.catchmyfame.com/paginator/example-form.php</a>, why it is impossible to post Antarctica ?<br />
What modification is to be made on the script ?<br />
Thank you for your reponse</p>
]]></content:encoded>
	</item>
</channel>
</rss>
