PHP和mysql+jqueyr建立类twitter站点(2)
http://www.itjxue.com 2015-07-17 08:18 来源:未知 点击次数:
接着,我们可以用CSS定义页面的样式。CSS文件命名为style.css:
当然,请不要忘了引用外部CSS文件。
<link media="screen" href="css/style.css" type="text/css" rel="stylesheet" />
第二步:用mysql创建数据库
mysql是一个非常强大的数据库系统,最重要的是,可以免费使用在我们的例子中,我们将使用mysql保存我们的消息数据。创建一个新表“message”,其字段如下所列:
id: key of this table, integer, auto-increment
message: the text of message, string
date: the message date, data format
该表设计如下:
创建该表的sql脚本如下:
CREATE TABLE `microblog`.`message` (
`id` int(10) unsigned NOT NULL auto_increment,
`message` text NOT NULL,
`date` datetime NOT NULL,
PRIMARY KEY (`id`)
);