文章分類新增功能
1,寫文章分類新增範本
新categoryListHtml.php檔,程式碼如下:
<?php header("Content-Type:text/html;charset=utf-8"); ?> <h1>后台文章分类管理</h1> <!--添加文章分类功能--> <form action="?action=add" method="post"> 分类名称:<input type="text" name="name"> <input type="submit" value="添加"> </form>
介面顯示如下:
2,輸入分類資訊進行表單提交
新category.php文件取得表單提交的資料,然後將資料寫入到資料庫中,具體程式碼如下:
<?php require('./init.php'); //获取操作标识 $a=isset($_GET['action'])?$_GET['action']:""; //文章分类具体功能 if($a=='add'){ $data['name']=trim(htmlspecialchars($_POST['name'])); //判断分类名称是否为空 if($data['name']===''){ $error[]='文章分类名称不能为空!'; }else{ //判断数据库中是否有同名的分类名称 $sql="select id from cms_category where name=:name"; if ( $db->data($data)->fetchRow($sql)){ $error[]="该文章分类已存在"; }else{ //插入到数据库 $sql="insert into cms_category(name)values(:name)"; $db->data($data)->query($sql); } } } } require './categoryListHtml.php';
#點選新增:
#資料庫展示如下: