大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
本篇文章为大家展示了php中怎么生成静态页面,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。
让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:域名注册、网页空间、营销软件、网站建设、安泽网站维护、网站推广。add.php
添加新闻
config.php
DB_class.php
host = $host; $this->uname = $uname; $this->port = $port; $this->pwd = $pwd; $this->db = $db; mysql_connect($host,$uname,$pwd); mysql_select_db($this->db); } public static function Instance() { if(Db::$instance==null){ include 'config.php'; return Db::$instance = new DB(HOST, USER, PWD, PORT, DB); } else return Db::$instance; } public function query($sql) { mysql_query("SET NAMES UTF8"); $query = mysql_query($sql) or die($sql." error"); if(!$query) return false; else return $query; } public function getAll($sql) { $query = $this->query($sql); if($query) { while($ret = mysql_fetch_assoc($query)) { $result[] = $ret; } } return $result; } } ?>
doadd.php
query($sql); $fp=fopen("model.htm","r");$str=fread($fp,filesize("model.htm"));$str=str_replace("{title}",$title,$str);$str=str_replace("{content}",$content,$str);fclose($fp); $dir = dirname($filename);if(!is_dir($dir)){ mkdir($dir);} $handle=fopen($filename,"w"); fwrite($handle,$str); fclose($handle); echo "查看刚才添加的新闻";echo "添加新闻";?>
model.htm
{title}
{content}