PHP generates HTML static page instance code _php instance
Source: Internet
Author: User
For the Cd2sc.com website features developed, the code for my original, generation speed generally.
(For well-known reasons, the data field name involved in the database has been changed and the part of the parameter filter has been removed for code clarity)
Description: The original dynamic address is moban.php?id=1, the post-generated address is html/200808/sell_1.html. Page.php is a paging program, published in this blog.
Page usage, save this code as make.php, using the method for the browser to access the number of make.php?t= &pg= page, such as make.php?t=300&pg=2, that is, each time 300 data generated, starting from the 2nd page of the data list, That is, skip the previous 300 bars. If you access make.php directly without any parameters, the default is 200 per build, starting from the first page.
Copy CodeThe code is as follows:
if ($_get[pg]== ') {
$AA = 1;
}else{
$aa =$_GET[PG];
}
Include ("admin/conn.php");
Require_once ("page.php");
$result =mysql_query ("SELECT * from 2carsell");
$totle =mysql_num_rows ($result);
$pagelist = $_get[t];
if ($_get[t]== ') {
$pagelist = ' 200 ';
}else{
$pagelist =$_get[t];
}
$pager = new Pager ($totle, $pagelist);
$datastat = "Total
". $pager->countall."Bar, each time you generate
". $pager->countlist."Bar, total build required
". $pager->page."Times ";//Data statistics
$BB = $pager->page;
$pagenav = $pager->backstr. $pager->thestr. $pager->nextstr;
$limitFrom = $pagelist * ($pager->pg-1);
$result =mysql_query ("SELECT * from 2carsell the ORDER by ID DESC limit $limitFrom, $pagelist");
?>
Page generated in the first time:
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.