上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 26 下一页
摘要: require "./global.php"; $act = isset($_GET['act']) ? $_GET['act'] : "error"; // d($act); switch($act){ case "qiandao": $uid... 阅读全文
posted @ 2015-06-26 11:08 壁虎漫步. 阅读(5954) 评论(1) 推荐(0) 编辑
摘要: $inwechat = false;$user_agent = $_SERVER['HTTP_USER_AGENT'];if (strpos($user_agent, 'MicroMessenger') === false) { // 非微信浏览器禁止浏览 $inwechat = false;}... 阅读全文
posted @ 2015-06-15 12:00 壁虎漫步. 阅读(200) 评论(0) 推荐(0) 编辑
摘要: PHP判断字符串中是否含有中文";//if (preg_match("/^[".chr(0xa1)."-".chr(0xff)."]+$/", $str)) { //只能在GB2312情况下使用//if (preg_match("/^[\x7f-\xff]+$/", $str)) { //兼容gb2... 阅读全文
posted @ 2015-06-09 13:07 壁虎漫步. 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 正在开发积分系统!其中有一项数据是显示用户积分排名?一下子想不到太好的办法!最简的情况是统一某一字段的积分数据排名?比如积分字段,里面存的整数!如何排名?或者说如何获得他在排序中的序列位次呢?select count(*) + 1 AS rank from `users` where number ... 阅读全文
posted @ 2015-06-05 11:56 壁虎漫步. 阅读(983) 评论(0) 推荐(0) 编辑
摘要: $award) { self::$proSum += $award[self::$proField]; } if (empty(self::$proSum)) { return self::$checkAward = fals... 阅读全文
posted @ 2015-06-03 17:05 壁虎漫步. 阅读(534) 评论(0) 推荐(0) 编辑
摘要: a:link { font-size: 14pt; text-decoration: underline; color: blue; } /*设置a对象在未被访问前的样式表属性 。*/a:hover { font-size: 14pt; text-decoration: underline; col... 阅读全文
posted @ 2015-06-01 18:02 壁虎漫步. 阅读(358) 评论(0) 推荐(0) 编辑
摘要: a:link /* 未访问的链接 */a:visited /* 已访问的链接 */a:hover /* 当有鼠标悬停在链接上 */a:active /* 被选择的链接 */a,a:visited,a:hover,a:active { /*全部状态都一样的效果*/ text-... 阅读全文
posted @ 2015-05-18 11:00 壁虎漫步. 阅读(1657) 评论(0) 推荐(0) 编辑
摘要: 在wampserver安装目录下\bin\apache\Apache2.2.21\conf\extra\httpd-autoindex.confAlias /icons/ "c:/Apache24/icons/" Options Indexes MultiViews AllowOverr... 阅读全文
posted @ 2015-05-15 20:52 壁虎漫步. 阅读(370) 评论(0) 推荐(0) 编辑
摘要: WAMP安装好后,mysql密码是为空的,那么要如何修改呢?其实很简单,通过几条指令就行了,下面我就一步步来操作。 首先,通过WAMP打开mysql控制台。 提示输入密码,因为现在是空,所以直接按回车。 然后输入“use mysql”,意思是使用mysql这个数据库,提示“Database c... 阅读全文
posted @ 2015-05-15 20:41 壁虎漫步. 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 主要思路:1.登录时,将用户的SessionID记录下来2.验证登录时,将记录的该用户SessionID与当前SessionID匹配3.如果不相同,说明在别处登录出处:http://bbs.lampbrother.net/read-htm-tid-121909-ds-1.html#tpc 阅读全文
posted @ 2015-05-15 14:59 壁虎漫步. 阅读(278) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 26 下一页