<?php
 echo"<html><title>hello</title><body>".
      "....................".
      ".....................".
      "</body></html>";
?>

解决方案 »

  1.   

    在本版搜一下“静态”就可以找到你想要的东西,生成静态页面我以前在php版搜过
    有很多的示例
      

  2.   

    http://community.csdn.net/Expert/topic/3278/3278323.xml?temp=.2410547http://community.csdn.net/Expert/topic/3333/3333522.xml?temp=.111355http://community.csdn.net/Expert/topic/3243/3243730.xml?temp=.3584864
      

  3.   

    csnd首页近期就有一个文章讲的
      

  4.   

    用一个表记录生成的静态网页的名字。然后,
    $fn="file.htm"
    $handle = fopen ("/home/rasmus/".$fn, "wb");fwrite($handle,"<html>............</html>");
    fclose($handle);
    把$fn内容存到数据库表中。