<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/1.5.1.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: PaginateIt - A PHP Pagination Class</title>
	<link>http://www.bradyvercher.com/php-pagination-class.html</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Fri, 16 May 2008 03:15:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=1.5.1.2</generator>

	<item>
		<title>by: sdfasd</title>
		<link>http://www.bradyvercher.com/php-pagination-class.html#comment-26665</link>
		<pubDate>Tue, 22 Apr 2008 10:47:07 +0000</pubDate>
		<guid>http://www.bradyvercher.com/php-pagination-class.html#comment-26665</guid>
					<description>stupid</description>
		<content:encoded><![CDATA[	<p>stupid
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Ian</title>
		<link>http://www.bradyvercher.com/php-pagination-class.html#comment-22582</link>
		<pubDate>Thu, 21 Feb 2008 17:21:58 +0000</pubDate>
		<guid>http://www.bradyvercher.com/php-pagination-class.html#comment-22582</guid>
					<description>Great class! Got it going in about 5 minutes. Keep up the good work.</description>
		<content:encoded><![CDATA[	<p>Great class! Got it going in about 5 minutes. Keep up the good work.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: bingo games in laughlin nv</title>
		<link>http://www.bradyvercher.com/php-pagination-class.html#comment-22479</link>
		<pubDate>Wed, 20 Feb 2008 12:15:53 +0000</pubDate>
		<guid>http://www.bradyvercher.com/php-pagination-class.html#comment-22479</guid>
					<description>&lt;strong&gt;bingo games in laughlin nv&lt;/strong&gt;

clobbered subnet arguably joust </description>
		<content:encoded><![CDATA[	<p><strong>bingo games in laughlin nv</strong></p>
	<p>clobbered subnet arguably joust
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: geiko auto insurance</title>
		<link>http://www.bradyvercher.com/php-pagination-class.html#comment-22186</link>
		<pubDate>Sun, 17 Feb 2008 13:23:51 +0000</pubDate>
		<guid>http://www.bradyvercher.com/php-pagination-class.html#comment-22186</guid>
					<description>&lt;strong&gt;geiko auto insurance&lt;/strong&gt;

breaching desired biweekly </description>
		<content:encoded><![CDATA[	<p><strong>geiko auto insurance</strong></p>
	<p>breaching desired biweekly
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Tim</title>
		<link>http://www.bradyvercher.com/php-pagination-class.html#comment-22021</link>
		<pubDate>Thu, 14 Feb 2008 20:10:46 +0000</pubDate>
		<guid>http://www.bradyvercher.com/php-pagination-class.html#comment-22021</guid>
					<description>btw, on your example page, you should encase the code you used for that in  tags because its useless as an example if all we see is the outputted HTML.</description>
		<content:encoded><![CDATA[	<p>btw, on your example page, you should encase the code you used for that in  tags because its useless as an example if all we see is the outputted HTML.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Tim</title>
		<link>http://www.bradyvercher.com/php-pagination-class.html#comment-22015</link>
		<pubDate>Thu, 14 Feb 2008 19:22:27 +0000</pubDate>
		<guid>http://www.bradyvercher.com/php-pagination-class.html#comment-22015</guid>
					<description>I'm trying to get this working with a search feature, but it's not working. My search grabs an array of variables so I am a little stuck here.

Main Array to grab Input search vars
// Start Code
$clause = array();
	if ($nb_author != &quot;&quot;) {
		$clause[] = &quot;nb_auth LIKE '%$nb_author%'&quot;;
	}
	if ($nb_subj != &quot;&quot;) {
		$clause[] = &quot;nb_subject LIKE '%$nb_subj%'&quot;;
	}
	if ($nb_num != &quot;&quot;) {
		$clause[] = &quot;nb_number LIKE '%$nb_num%'&quot;;
	}
	if ($nb_type != &quot;&quot;) {
		$clause[] = &quot;nb_type LIKE '%$nb_type%'&quot;;
	}
$clause = implode(' AND ', $clause);

include('../_resources/PaginateIt.php');
$PaginateIt = new PaginateIt();
$PaginateIt-&amp;#62;SetItemsPerPage(10);
$PaginateIt-&amp;#62;SetLinksToDisplay(5);
$PaginateIt-&amp;#62;SetLinksFormat( '&amp;#62;' );
$PaginateIt-&amp;#62;SetItemCount($nb_result);
	
$sql = &quot;SELECT * FROM Notebooks WHERE $clause ORDER BY nb_number ASC&quot;; 
$result=mysql_query($sql, $db_link); 
$nb_result = mysql_num_rows($result);
// End Code

This returns page numbers, but when I click on any page besides 1, I loose the query and my results return 0.</description>
		<content:encoded><![CDATA[	<p>I&#8217;m trying to get this working with a search feature, but it&#8217;s not working. My search grabs an array of variables so I am a little stuck here.</p>
	<p>Main Array to grab Input search vars<br />
// Start Code<br />
$clause = array();<br />
	if ($nb_author != &#8220;&#8221;) {<br />
		$clause[] = &#8220;nb_auth LIKE &#8216;%$nb_author%&#8217;&#8221;;<br />
	}<br />
	if ($nb_subj != &#8220;&#8221;) {<br />
		$clause[] = &#8220;nb_subject LIKE &#8216;%$nb_subj%&#8217;&#8221;;<br />
	}<br />
	if ($nb_num != &#8220;&#8221;) {<br />
		$clause[] = &#8220;nb_number LIKE &#8216;%$nb_num%&#8217;&#8221;;<br />
	}<br />
	if ($nb_type != &#8220;&#8221;) {<br />
		$clause[] = &#8220;nb_type LIKE &#8216;%$nb_type%&#8217;&#8221;;<br />
	}<br />
$clause = implode(&#8217; AND &#8216;, $clause);</p>
	<p>include(&#8217;../_resources/PaginateIt.php&#8217;);<br />
$PaginateIt = new PaginateIt();<br />
$PaginateIt-&gt;SetItemsPerPage(10);<br />
$PaginateIt-&gt;SetLinksToDisplay(5);<br />
$PaginateIt-&gt;SetLinksFormat( &#8216;&gt;&#8217; );<br />
$PaginateIt-&gt;SetItemCount($nb_result);</p>
	<p>$sql = &#8220;SELECT * FROM Notebooks WHERE $clause ORDER BY nb_number ASC&#8221;;<br />
$result=mysql_query($sql, $db_link);<br />
$nb_result = mysql_num_rows($result);<br />
// End Code</p>
	<p>This returns page numbers, but when I click on any page besides 1, I loose the query and my results return 0.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: black banana casino</title>
		<link>http://www.bradyvercher.com/php-pagination-class.html#comment-21927</link>
		<pubDate>Wed, 13 Feb 2008 07:28:15 +0000</pubDate>
		<guid>http://www.bradyvercher.com/php-pagination-class.html#comment-21927</guid>
					<description>&lt;strong&gt;black banana casino&lt;/strong&gt;

weakest burntness Tenex Cretaceous gelled wilting </description>
		<content:encoded><![CDATA[	<p><strong>black banana casino</strong></p>
	<p>weakest burntness Tenex Cretaceous gelled wilting
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: slot for free</title>
		<link>http://www.bradyvercher.com/php-pagination-class.html#comment-21629</link>
		<pubDate>Fri, 08 Feb 2008 23:33:04 +0000</pubDate>
		<guid>http://www.bradyvercher.com/php-pagination-class.html#comment-21629</guid>
					<description>&lt;strong&gt;slot for free&lt;/strong&gt;

residential techniques wondrously introvert:dreadnought </description>
		<content:encoded><![CDATA[	<p><strong>slot for free</strong></p>
	<p>residential techniques wondrously introvert:dreadnought
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Dan</title>
		<link>http://www.bradyvercher.com/php-pagination-class.html#comment-20092</link>
		<pubDate>Fri, 11 Jan 2008 19:18:20 +0000</pubDate>
		<guid>http://www.bradyvercher.com/php-pagination-class.html#comment-20092</guid>
					<description>Nick,

Any chance you have an updated copy of the class? I tried applying the updates to GetPageLinks() from your previous comments but they appeared to have been cut off.

Thanks,
Dan</description>
		<content:encoded><![CDATA[	<p>Nick,</p>
	<p>Any chance you have an updated copy of the class? I tried applying the updates to GetPageLinks() from your previous comments but they appeared to have been cut off.</p>
	<p>Thanks,<br />
Dan
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Nuno</title>
		<link>http://www.bradyvercher.com/php-pagination-class.html#comment-19580</link>
		<pubDate>Sun, 23 Dec 2007 17:11:19 +0000</pubDate>
		<guid>http://www.bradyvercher.com/php-pagination-class.html#comment-19580</guid>
					<description>Hi,

This is a great pagination class, but i need some help to go with friendly url's.

My site produces links like domain.tld/search/word+to+search/page_number.
How am I able to create links like ...href=&quot;/search/search+term/12&quot;... ?

Thanks

Nuno</description>
		<content:encoded><![CDATA[	<p>Hi,</p>
	<p>This is a great pagination class, but i need some help to go with friendly url&#8217;s.</p>
	<p>My site produces links like domain.tld/search/word+to+search/page_number.<br />
How am I able to create links like &#8230;href=&#8221;/search/search+term/12&#8243;&#8230; ?</p>
	<p>Thanks</p>
	<p>Nuno
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
