摘要:
CREATE TABLE `userinfo` ( `uid` INT(10) NOT NULL AUTO_INCREMENT, `username` VARCHAR(64) NULL DEFAULT NULL, `departname` VARCHAR(64) NULL DEFA... 阅读全文
摘要:
package mainimport ( "crypto/md5" "fmt" "html/template" "io" "log" "net/http" "os" "strconv" "strings" "time")func sayHe... 阅读全文
摘要:
application/x-www-form-urlencoded 表示在发送前编码所有字符(默认)multipart/form-data 不对字符编码。在使用包含文件上传控件的表单时,必须使用该值。text/plain 空格转换为 "+" 加号,但不对特殊字符编码。 阅读全文
摘要:
package mainimport ( "crypto/md5" "fmt" "html/template" "io" "log" "net/http" "strconv" "strings" "time")func sayHelloName(... 阅读全文