PHP头条
热点:

新闻详细页静态化-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;
}


}
?>


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"添加新闻";
?>

www.phpzy.comtrue/php/37459.htmlTechArticle新闻详细页静态化-PHP源码 发布新闻,实现新闻页面静态化,真静态 添加新闻 新闻标题: 新闻内容: host = $host;$this->uname = $uname;$this->port = $port;$this->pwd = $pwd;$this->db = $db;mysql_connect($host,...

相关文章

PHP之友评论

今天推荐