Twitter-像系统-PHP
一个使用PHP和MySQL数据库的简单twitter克隆。
试用适用于Twitter-Like-System-PHP的
设置
在MySQL中创建新数据库-推荐
运行以下SQL代码以在数据库中创建表
CREATE TABLE users(
id int NOT NULL AUTO_INCREMENT,
username varchar(15) NOT NULL,
password varchar(32) NOT NULL,
followers int DEFAULT 0,
following int DEFAULT 0,
tweets int DEFAULT 0,
PRIMARY KEY (id)
);
CREATE TABLE following(
id int NOT NULL AUTO_