Php easy paging

Source: Internet
Author: User
Php simple paging & lt ;! DOCTYPEhtmlPUBLIC-W3CDTDXHTML1.0TransitionalENwww.w3.orgTRxhtml1DTDxhtml1-transitional.dtd & gt; & lt; htmlxmlnswww. w3.org5oxhtm php simple paging





Untitled Document


$ Conn = mysql_connect ("localhost", "root", "123 ");
Mysql_select_db ("qq", $ conn );
Mysql_query ("set names utf8 ");
$ Length = 5;
$ Pagenum = isset ($ _ GET ['Page'])? $ _ GET ['Page']: 1;
$ Totsql = "select count (*) from q1 ";
$ Totarr = mysql_fetch_row (mysql_query ($ totsql ));
$ Pagetot = ceil ($ totarr [0]/$ length );
If ($ pagenum >=$ pagetot ){
$ Pagenum = $ pagetot;
}
$ Offset = ($ pagenum-1) * $ length;
$ SQL = "select * from q1 order by id limit {$ offset}, {$ length }";
$ Ret = mysql_query ($ SQL );
Echo"

";
Echo"







";While ($ row = mysql_fetch_assoc ($ ret )){Echo" ";Echo" ";Echo" ";Echo" ";Echo" ";}Echo"
{$ Row ['id']}{$ Row ['name']}{$ Row ['pass']}
";
$ Prevpage = $ pagenum-1;
$ Nextpage = $ pagenum + 1;
Echo "up | down ";
Echo" ";
Mysql_close ($ conn );

?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.