Php method for generating HTML static pages

Source: Internet
Author: User

Generates HTML static pages from PHP and stores them in a directory created with the name of the year and month.
Read all data batch generation, all generated after the popup prompt.
You can specify the number of batches to be generated, no more than 800 is recommended, or the execution speed will be problematic.

For the Jbxue.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.

Complete Example:

<?php 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 <b>". $pager->countall. " </b> per Build <b> ". $pager->countlist." </b>, required to generate <b> ". $pager->page."   </b> 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"); ?> <center><div style= "FONT-SIZE:14PX;" ><b> <font color=red><?echo $aa? ></font > Times page Generation: <?   echo $datastat?></b></div><br> <? PHP generate static page//Www.shouce.ren print "<center><TextArea Name=textarea class=textarea style= ' width:520px;height:455px ' > ";   while ($datauser =mysql_fetch_array ($result)) {$iid = $datauser [id];   $html = file_get_contents ("/moban.php?id=". $iid. ");   $sql = "SELECT * from 2carsell where id= $iid";   $data =mysql_fetch_array (mysql_query ($sql));   $path =date ("Ym", $data [putdate]);   $testdir = "html/". $path;   if (file_exists ($testdir)): Else:mkdir ($testdir, 0777); echo "Catalog". $testdir. " Create success!   <br> ";     endif     $filename = "html/$path/sell_$iid.html";   Use write mode to open $filename if (! $handle = fopen ($filename, ' W ')) {print "Cannot open file $filename";   Exit   } if (Is_writable ($filename)) {//writes $html to our open file.   if (!fwrite ($handle, $html)) {print "Cannot write to file $filename";   Exit } print "File $filename updated successfully!     \n\r ";     Fclose ($handle);   } else {print "File $filename not writable"; }?> <? }?> </textarea> <br><br> <div style= "font-size=12px" &GT;&LT;? echo $datastat. ""? ></div&gT;<br><br> <?   $AA = $aa +1; if ($aa > $bb) {echo ' <font color=blue> Congratulations, all pages generated!   </font> '; echo "<script>alert (' All document Generation/update completed!   ') </script> "; }else{echo "<Script> window.location= ' make.php?t= $pagelist &pg= $aa ';   </script> ";   }?>

  

Php method for generating HTML static pages

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.