随笔分类 -  PHP

摘要:一、mysql常用语句创建,删除和最基本查询:显示数据库mysql->show databases;创建数据库mysql->create database db;删除数据库 mysql->drop database db;选择数据库mysql->use db创建表mysql->create table mytable(name varchar(20),sex(char(1),birth date);删除表 mysql->drop table mytable;显示表的内容mysql->show tables;显示表的结构mysql->describ 阅读全文
posted @ 2013-04-03 18:39 ideaplusl 阅读(268) 评论(0) 推荐(0)
摘要:装了5.5的mysql,因为是第二次装,删了半天上次的安装文件,终于装好了,以为万事大吉不想,第二次打开就闪退掉,隐约看清了一个单词,error!多次闪瞎我的眼才看清是error2003 can't conect to the localhost....诸如这般问题,百度比比皆是...最后试了n条,不行,甚至被我搞出error 1045...最后看了一句话,名曰:“ps:文章比较啰嗦,其实就一句话,遇到这个2003错误 可以试着运行下:mysqld.exe”so,去了bin目录下双击运行了一下mysqld.exe,弹出windows防火墙询问是否允许,尼玛当然允许。尔后便OK了,找了半 阅读全文
posted @ 2012-11-04 17:11 ideaplusl 阅读(310) 评论(0) 推荐(0)
摘要:在用PHP5.3以上的PHP版本时,只要是涉及时间的会报一个"PHP Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this 阅读全文
posted @ 2012-11-04 14:59 ideaplusl 阅读(214) 评论(0) 推荐(0)