摘要: #Virtual hosts#Include conf/extra/httpd-vhosts.conf我只要把其中任何一个开启就是吧#去掉就启动不了apache。怎么回事error.log是这样的httpd.exe: Could not reliably determine the server's fully qualified domain name, using 192.168.1.101 for ServerNamehttpd.exe: Could not reliably determine the server's fully qualified domain na 阅读全文
posted @ 2013-11-02 18:40 jshaibozhong 阅读(1348) 评论(0) 推荐(0) 编辑
摘要: 一、查看邮件是否已被阅读当你在发送邮件时,你或许很想知道该邮件是否被对方已阅读。这里有段非常有趣的代码片段能够显示对方IP地址记录阅读的实际日期和时间。 二、从网友中提取关键字一段伟大的代码片段能够轻松的从网页中提取关键字。$meta = get_meta_tags('http://www.emoticode.net/');$keywords = $meta['keywords'];// Split keywords$keywords = explode(',', $keywords );// Trim them$keywords = array 阅读全文
posted @ 2013-11-02 14:22 jshaibozhong 阅读(209) 评论(0) 推荐(0) 编辑
摘要: mysql的参数赋值语句必须是只能够选出一行,SELECT username,nickname INTO Ausername,Anickname FROM userbase WHERE userid = userid LIMIT 1 ;这样的语句必须要加上limit 1才行。另外,这种赋值语句还有个规矩就是参数名和字段名不能冲突,不然能够执行过去,但是却没有给参数赋值,这是个很隐性的错误,可以参考手册上的:重要: SQL变量名不能和列名一样。如果SELECT ... INTO这样的SQL语句包含一个对列的参考,并包含一个与列相同名字的局部变量,MySQL当前把参考解释为一个变量的名字。 阅读全文
posted @ 2013-11-02 12:00 jshaibozhong 阅读(475) 评论(0) 推荐(0) 编辑