最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

創(chuàng)建數(shù)據(jù)庫php代碼 用PHP寫出自己的BLOG系統(tǒng)

 更新時間:2010年04月12日 12:20:09   作者:  
今天的任務(wù)是創(chuàng)建數(shù)據(jù)庫,因為對數(shù)據(jù)庫懂的很少,所以在數(shù)據(jù)庫表關(guān)系上還很差啊。
下面直接上代碼
復(fù)制代碼 代碼如下:

<?php
//date_default_timezone_set("Asia/Shanghai");
/*
function create_siteinfo
DONE:網(wǎng)站信息表
Author:www.5dkx.com
DATE:2010-3-30
表結(jié)構(gòu):
title 網(wǎng)站名
keyword 網(wǎng)站關(guān)鍵詞
description 網(wǎng)站描述
*/
function create_siteinfo()
{
global $conn;
$sql = "create table siteinfo (
title varchar(100) not null,
keyword varchar(200) not null,
description varchar(200) not null
)";
$dropsql = "drop table if exists siteinfo";
mysql_query($dropsql,$conn)or die("刪除表siteinfo失敗!");
mysql_query($sql,$conn)or die("創(chuàng)建表siteinfo失敗!");
}
/*
function:create_article()
DONE:mysql創(chuàng)建文章表sql語句
Author:www.5dkx.com
表結(jié)構(gòu):
id 文章ID
cid 歸屬類別ID
abstract 文章摘要
title 文章標題
posttime 發(fā)布時間
aurhor 作者
comefrom 文章來源
comeurl 來源URL
content 正文內(nèi)容
keyword 關(guān)鍵詞
rank 文章等級
views 瀏覽次數(shù)
*/
function create_article()
{
global $conn,$table_article;
$sql ="create table $table_article(
id int(11) auto_increment not null,
cid int(5) not null,
abstract varchar(300) not null,
title varchar(50) not null,
posttime datetime not null,
author varchar(30) not null,
comefrom varchar(50) not null,
comeurl varchar(50) not null,
content TEXT not null,
keyword varchar(20) not null,
rank int(2) not null,
views int(5) not null,
PRIMARY KEY(id)
)";
$dropsql = "drop table if exists $table_article";
mysql_query($dropsql,$conn)or die("刪除數(shù)據(jù)庫失敗!");
mysql_query($sql,$conn)or die("創(chuàng)建數(shù)據(jù)庫失敗!");
}
/*
function:create_member()
DONE:mysql創(chuàng)建會員表sql語句
Author:www.5dkx.com
uid 會員ID
u_name 會員名稱
u_passwd 密碼
rank 會員等級
*/
function create_member()
{
global $conn,$table_member;
$sql = "create table $table_member(
uid int(5) auto_increment not null,
u_name varchar(20) not null UNIQUE,
u_passwd varchar(100) not null,
rank int(2) not null,
PRIMARY KEY(uid)
)";
$dropsql = "drop table if exists $table_member";
mysql_query($dropsql,$conn)or die("刪除數(shù)據(jù)庫失敗!");
mysql_query($sql,$conn)or die("創(chuàng)建數(shù)據(jù)庫失敗!");
}
/*
function:create_class
DONE:sql創(chuàng)建分類sql語句
Author:www.5dkx.com
表結(jié)構(gòu):
cid 類類別ID
cname 類名
*/
function create_class()
{
global $conn,$table_class;
$sql = "create table $table_class(
cid int(5) auto_increment not null,
cname varchar(50) not null UNIQUE,
PRIMARY KEY(cid)
)";
$dropsql = "drop table if exists $table_class";
mysql_query($dropsql,$conn)or die("刪除".$table_class."失敗!");
mysql_query($sql,$conn)or die("創(chuàng)建表".$table_class."失敗");
}
/*
function:create_guest
DONE:sql創(chuàng)建留言板sql語句
Author:www.5dkx.com
表結(jié)構(gòu):
gid 留言ID
g_name 留言用戶名
g_site 用戶個人主頁
g_mail 用戶郵箱
g_cid 留言位置(哪篇文章或者是留言板)
*/
function create_guest()
{
global $conn,$table_guest;
$sql = "create table $table_guest(
gid int(11) auto_increment not null,
g_name varchar(50) not null,
g_site varchar(50) not null,
g_mail varchar(50) not null,
g_cid int(5) not null,
PRIMARY KEY(gid)
)";
$dropsql = "drop table if exists $table_guest";
mysql_query($dropsql,$conn)or die("刪除表".$table_guest."失敗");
mysql_query($sql,$conn)or die("創(chuàng)建表".$table_guest."失敗");
}
function create_sql()
{
global $table_article,$table_member,$table_class,$table_guest,$conn;
echo "創(chuàng)建siteinfo表\r……";
create_siteinfo();
echo "完成<br>";
echo "創(chuàng)建".$table_article."表\r……";
create_article();
echo "完成<br>";
echo "創(chuàng)建".$table_member."表\r……";
create_member();
echo "完成<br>";
echo "創(chuàng)建".$table_class."表\r……";
create_class();
echo "完成<br>";
echo "創(chuàng)建".$table_guest."表\r……";
create_guest();
echo "完成<br>";
mysql_close($conn);
}
?>

相關(guān)文章

最新評論

崇信县| 汕头市| 沂南县| 乾安县| 大庆市| 肥西县| 博客| 广宗县| 大安市| 探索| 勐海县| 公安县| 梅河口市| 天台县| 珲春市| 沙田区| 垫江县| 石家庄市| 郑州市| 东乡族自治县| 武隆县| 嵊泗县| 连州市| 博客| 都昌县| 昌江| 岢岚县| 大余县| 桂阳县| 湄潭县| 安宁市| 从江县| 泸西县| 南川市| 双桥区| 周至县| 翁源县| 林甸县| 太仆寺旗| 崇礼县| 名山县|