时间:2021-07-01 10:21:17 帮助过:18人阅读
addform.php文件
代码如下 | |
|
add.php文件
代码如下 | |
require_once("mysql_inc.php"); //引用conn.php,连接数据库 $title=$_POST['title'];
//以下用SQL语句添加数据至表 news //以下为关键之处,把从表单获得的数据替换模板中的{title},{content}标记 $handle=fopen($path,"w"); //写入方式打开新闻路径
|
mysql_inc.php数据库连接文件
代码如下 | |
class mysql{
function __construct($host,$name,$pass,$database,$ut){ }
function query($sql, $type = '') { function show($message = '', $sql = '') { function affected_rows() { function result($query, $row) { function num_rows($query) { function num_fields($query) { function free_result($query) { function insert_id() { function fetch_row($query) { function version() { function close() {
function htmtocode($content){ $db=new mysql("localhost","root","","database","utf8");
|
http://www.bkjia.com/PHPjc/632767.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/632767.htmlTechArticle如果你是一个seo工作者你估计要求把php文件全部转换成html页面了,这样可以对网站排名有好处,同时也可以减轻服务器apache负载了,下面我...