轻言放弃之博客003

栏目列表

catlist.php

// 注意:cat下的大多数操作是根据cat_id来完成的
$conn = mysql_connect('localhost', 'root', '');
mysql_query('use blog', $conn);
mysql_query('set names utf8');

$sql = "select * from cat";
$rs = mysql_query($sql);
$cat = array();

while( $row = mysql_fetch_assoc($rs) ) {
    $cat[] = $row;
}
// print_r($cat);// 二维数组

require('./view/admin/catlist.html');

catlist.html

 $value) { ?>

    
    
    
    
        ">删除|
        ">编辑
    


catdel.php

// 通过cat_id去删除

catedit.php



你可能感兴趣的:(轻言放弃之博客003)