<?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: Paging in PHP &#8211; PHP Paging Tutorial</title>
	<atom:link href="http://theinfiniteloopblog.com/programming/php/paging-in-php-php-paging-tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://theinfiniteloopblog.com/programming/php/paging-in-php-php-paging-tutorial/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=paging-in-php-php-paging-tutorial</link>
	<description>Problem. Problem Solved. Loop. - The life of a programmer</description>
	<lastBuildDate>Wed, 17 Aug 2011 15:25:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>By: admin</title>
		<link>http://theinfiniteloopblog.com/programming/php/paging-in-php-php-paging-tutorial/comment-page-1/#comment-388</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 03 Jun 2011 20:32:12 +0000</pubDate>
		<guid isPermaLink="false">http://theinfiniteloopblog.com/?p=381#comment-388</guid>
		<description>From the query string url.
Example

page.php?p=5

$_GET[&#039;p&#039;] will return 5</description>
		<content:encoded><![CDATA[<p>From the query string url.<br />
Example</p>
<p>page.php?p=5</p>
<p>$_GET['p'] will return 5</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mashal</title>
		<link>http://theinfiniteloopblog.com/programming/php/paging-in-php-php-paging-tutorial/comment-page-1/#comment-387</link>
		<dc:creator>mashal</dc:creator>
		<pubDate>Thu, 02 Jun 2011 12:50:50 +0000</pubDate>
		<guid isPermaLink="false">http://theinfiniteloopblog.com/?p=381#comment-387</guid>
		<description>i am developing simple event based moule in which i have to displayed schedule events but fail to underdstand this GET[&#039;p&#039;]</description>
		<content:encoded><![CDATA[<p>i am developing simple event based moule in which i have to displayed schedule events but fail to underdstand this GET['p']</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mashal</title>
		<link>http://theinfiniteloopblog.com/programming/php/paging-in-php-php-paging-tutorial/comment-page-1/#comment-386</link>
		<dc:creator>mashal</dc:creator>
		<pubDate>Thu, 02 Jun 2011 12:49:08 +0000</pubDate>
		<guid isPermaLink="false">http://theinfiniteloopblog.com/?p=381#comment-386</guid>
		<description>How and what v get in GET[&#039;p&#039;]
i read many articles but could not undersatand what and how v r passing values to GEt[&#039;p&#039;]</description>
		<content:encoded><![CDATA[<p>How and what v get in GET['p']<br />
i read many articles but could not undersatand what and how v r passing values to GEt['p']</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://theinfiniteloopblog.com/programming/php/paging-in-php-php-paging-tutorial/comment-page-1/#comment-362</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 15 Apr 2011 15:57:56 +0000</pubDate>
		<guid isPermaLink="false">http://theinfiniteloopblog.com/?p=381#comment-362</guid>
		<description>Hi Ghulam,
Use this:
&lt;select name=&quot;pgsize&quot;&gt;
&lt;option value=&quot;5&quot;&gt;5&lt;/option&gt;
&lt;option value=&quot;10&quot;&gt;10&lt;/option&gt;
&lt;/select&gt;

In the code change:
$pgsize=15; to this
$pgsize=$_REQUEST[&quot;pgsize&quot;];</description>
		<content:encoded><![CDATA[<p>Hi Ghulam,<br />
Use this:<br />
&lt;select name=&#8221;pgsize&#8221;&gt;<br />
&lt;option value=&#8221;5&#8243;&gt;5&lt;/option&gt;<br />
&lt;option value=&#8221;10&#8243;&gt;10&lt;/option&gt;<br />
&lt;/select&gt;</p>
<p>In the code change:<br />
$pgsize=15; to this<br />
$pgsize=$_REQUEST["pgsize"];</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ghulam Rusool</title>
		<link>http://theinfiniteloopblog.com/programming/php/paging-in-php-php-paging-tutorial/comment-page-1/#comment-361</link>
		<dc:creator>Ghulam Rusool</dc:creator>
		<pubDate>Fri, 15 Apr 2011 14:58:35 +0000</pubDate>
		<guid isPermaLink="false">http://theinfiniteloopblog.com/?p=381#comment-361</guid>
		<description>Hi All,

i want to change pages per page limit by drop down.

If any one did it please let me know ?

grusool@gmail.com

Thanks</description>
		<content:encoded><![CDATA[<p>Hi All,</p>
<p>i want to change pages per page limit by drop down.</p>
<p>If any one did it please let me know ?</p>
<p><a href="mailto:grusool@gmail.com">grusool@gmail.com</a></p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ghulam Rusool</title>
		<link>http://theinfiniteloopblog.com/programming/php/paging-in-php-php-paging-tutorial/comment-page-1/#comment-360</link>
		<dc:creator>Ghulam Rusool</dc:creator>
		<pubDate>Fri, 15 Apr 2011 14:49:57 +0000</pubDate>
		<guid isPermaLink="false">http://theinfiniteloopblog.com/?p=381#comment-360</guid>
		<description>Hi Writer,

thnx for ur this gr8 efforts.

I was bit crazy to do paging and spend my lot of time to find out something very good ans easy to do paging. 

Nw I am oke with that....</description>
		<content:encoded><![CDATA[<p>Hi Writer,</p>
<p>thnx for ur this gr8 efforts.</p>
<p>I was bit crazy to do paging and spend my lot of time to find out something very good ans easy to do paging. </p>
<p>Nw I am oke with that&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: co0l</title>
		<link>http://theinfiniteloopblog.com/programming/php/paging-in-php-php-paging-tutorial/comment-page-1/#comment-355</link>
		<dc:creator>co0l</dc:creator>
		<pubDate>Sat, 09 Apr 2011 11:04:35 +0000</pubDate>
		<guid isPermaLink="false">http://theinfiniteloopblog.com/?p=381#comment-355</guid>
		<description>Gud tut</description>
		<content:encoded><![CDATA[<p>Gud tut</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kalees</title>
		<link>http://theinfiniteloopblog.com/programming/php/paging-in-php-php-paging-tutorial/comment-page-1/#comment-256</link>
		<dc:creator>kalees</dc:creator>
		<pubDate>Wed, 03 Nov 2010 11:51:26 +0000</pubDate>
		<guid isPermaLink="false">http://theinfiniteloopblog.com/?p=381#comment-256</guid>
		<description>ya ...good work</description>
		<content:encoded><![CDATA[<p>ya &#8230;good work</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: farah wahida</title>
		<link>http://theinfiniteloopblog.com/programming/php/paging-in-php-php-paging-tutorial/comment-page-1/#comment-232</link>
		<dc:creator>farah wahida</dc:creator>
		<pubDate>Fri, 03 Sep 2010 22:20:11 +0000</pubDate>
		<guid isPermaLink="false">http://theinfiniteloopblog.com/?p=381#comment-232</guid>
		<description>wahhh veri nice tutorial..thanks for sharing..i will refer soon:)

have a nice day as a programmer yeah!

&lt;a href=&quot;http://www.farahwahida.com&quot; rel=&quot;nofollow&quot;&gt;farahwahida
&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>wahhh veri nice tutorial..thanks for sharing..i will refer soon:)</p>
<p>have a nice day as a programmer yeah!</p>
<p><a href="http://www.farahwahida.com" rel="nofollow">farahwahida<br />
</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ram</title>
		<link>http://theinfiniteloopblog.com/programming/php/paging-in-php-php-paging-tutorial/comment-page-1/#comment-208</link>
		<dc:creator>ram</dc:creator>
		<pubDate>Wed, 07 Jul 2010 05:41:13 +0000</pubDate>
		<guid isPermaLink="false">http://theinfiniteloopblog.com/?p=381#comment-208</guid>
		<description>hiii
nicest tutorial ive seen!!</description>
		<content:encoded><![CDATA[<p>hiii<br />
nicest tutorial ive seen!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

