摘要:
EXPLAIN output columns(解释输出列) Each output row from EXPLAIN provides information about one table . Each cotains the values summarized in Table 8.1 "EXP 阅读全文
摘要:
SQL表定义为 CREATE TABLE `t` ( `id` int(11) NOT NULL, `city` varchar(16) NOT NULL, `name` varchar(16) NOT NULL, `age` int(11) NOT NULL, `addr` varchar(128 阅读全文
该文被密码保护。 阅读全文
摘要:
SQL分类 DDL Data Ddfinition Language 数据定义语言 create ,drop, DML Data Manipulation Language 数据操作语言 select insert delete update TPL Transaction Control Lang 阅读全文
摘要:
{$add_time|date="Y-m-d H:i"} 阅读全文
摘要:
<?php namespace page; use think\Paginator; class Page extends Paginator { //首页 protected function home() { if ($this->currentPage() > 1) { return "<a 阅读全文
摘要:
$keyword = $this->request->param('keyword'); if(cookie('keyword')){ $history = explode(',',cookie('keyword')); array_unshift($history,$keyword); $hist 阅读全文
摘要:
CGI是为了保证web server传递过来的数据是标准格式的,它是一个协议,方便CGI程序的编写者. FastCGI是CGI更高级的一种方式,是用来提高CGI程序性能的. web server 如nginx只是内容的分发者.比如 如果请求/index.html 那么web server会去文件系统 阅读全文
摘要:
create user qiepian identified by 'Qiepian123@' grant all on shop.* to 'qiepian'@'%'; flush privileges; 阅读全文