做了一个简易留言板系统,练练手,用到了7个包,呵呵.以后要多写写东西,这样进步比较快.
main.go
// Golang简易留言板系统 // Author: dotcoo zhao // mysql // CREATE TABLE liuyan ( // id int primary key auto_increment not null, // name varchar(20) not null, // url varchar(100) not null, // content varchar(1000) not null, // time int // ) ENGINE = MYISAM CHARACTER SET utf8 COLLATE utf8_general_ci; // sqlite3 // CREATE TABLE liuyan ( // id integer primary key autoincrement, // name text, // url text, // content text, // time integer // ); package main import ( "database/sql" "io" "net/http" "strings" "text/template" "time" // "github.com/ziutek/mymysql/godrv" _ "github.com/mattn/go-sqlite3" ) // 留言结构 type Liuyan struct { Id int Name string Url string Content string Time int } // // 显示留言时间 // func (l Liuyan) ShowTime() string { // t := time.