上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 35 下一页
摘要: 真实姓名:(必填验证)电子邮箱:(邮箱验证)电话:密码:(必填,字母、数字、下划线验证)年龄:(必填,最大值和最小值验证)提交email: “请输入正确格式的电子邮件”,url: “请输入合法的网址”,date: “请输入合法的日期”,dateISO: “请输入合法的日期 (ISO).”,number: “请输入合法的数字”,digits: “只能输入整数”,creditcard: “请输入合法的信用卡号”,equalTo: “请再次输入相同的值”,accept: “请输入拥有合法后缀名的字符串”,maxlength: $.validator.format(“长度最多是 {0} 的字符串”), 阅读全文
posted @ 2013-08-15 11:04 FreeSpider 阅读(3169) 评论(0) 推荐(0) 编辑
摘要: Windows Server 2003 简体中文企业版,真正免激活。 CD-KEY:JB88F-WT2Q3-DPXTT-Y8GHG-7YYQY 安装序列号:JCGMJ-TC669-KCBG7-HB8X2-FXG7M 使用这个序列号 Windows Server 2003 可在线升级! 如果已经安装了 Windows Server 2003 Enterprise Edition 3790 操作系统,安装时使用了 JB88F-WT2Q3-DPXTT-Y8GHG-7YYQY 这个安装序列号或其他的号,正常激活系统但不能在线升级的,你可以不需要卸载掉原来的操作系统重新使用 JCGMJ-TC669-K. 阅读全文
posted @ 2013-07-22 11:21 FreeSpider 阅读(1050) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf- 阅读全文
posted @ 2013-04-26 14:33 FreeSpider 阅读(439) 评论(0) 推荐(0) 编辑
摘要: 一.关于Mongdb 的一些技术内幕 1.Mongdb 使用 js 语法进行数据管理 2.Mongdb 使用 firefox 的 js 解析其作为语法解析其 3.Mongdb 存储的数据格式是 JSON 的变种 BSON二.与 MYSQL 进行比较,理解 Mongodb 的一些概念 1.在 Mongodb 中,也有书库将的概念。MYSQL中叫 databases ,Mongodb 中也叫databases 2.在 Mongodb 中,没有"表"的概念,MYSQL 中的table ,Mongodb 中 collection 3.在 Mongodb 中,没有“行”的概念,MYS 阅读全文
posted @ 2013-04-15 23:03 FreeSpider 阅读(1056) 评论(0) 推荐(1) 编辑
摘要: 终于让服务器每天早上备份一次 MySQL 数据库并自动打包,同时删除 5 天前的备份文件。分享如下:1. 环境: windows server 2003 + Apache 2.0 + PHP5 + MySQL 4.0.26 .2. 假设 PHP 安装目录为 D:/php ,MySQL 安装目录为 D:/mysql.3. 在 D:/php 下建立目录 WinRAR, 把你 winrar 安装目录下的 WinRAR.exe 和 RARReg.KEY 复制到 D:/php/WinRAR .4. D:/php 下建立文件 mysql_backup.php:/*///////////////////// 阅读全文
posted @ 2013-04-11 13:54 FreeSpider 阅读(466) 评论(0) 推荐(0) 编辑
摘要: <?php/** * 返回数组的维度 * @param [type] $arr [description] * @return [type] [description] */function arrayLevel($arr){ $al = array(0); function aL($arr,&$al,$level=0){ if(is_array($arr)){ $level++; $al[] = $level; foreach($arr as $v){ aL(... 阅读全文
posted @ 2013-04-10 22:06 FreeSpider 阅读(638) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf- 阅读全文
posted @ 2013-04-08 11:23 FreeSpider 阅读(398) 评论(0) 推荐(0) 编辑
摘要: javascript实现:top.location.href 顶级窗口的地址 this.location.href 当前窗口的地址PHP实现#测试网址: http://localhost/blog/testurl.php?id=5//获取域名或主机地址 echo $_SERVER['HTTP_HOST']."<br>"; #localhost//获取网页地址 echo $_SERVER['PHP_SELF']."<br>"; #/blog/testurl.php//获取网址参数 echo $_SER 阅读全文
posted @ 2013-03-28 10:58 FreeSpider 阅读(285) 评论(0) 推荐(0) 编辑
摘要: phpcms V9的标签函数 不再像2008那样支持limit="0,5"这样的写法 这样就大大的阻碍了我们的调用 不知道是不是没有 还是我不知道 不管怎么样 先把我自己写的函数标签奉上来可谓是简单易用 前台 代码: {pc:content action="limit" type="lists" catid="54" thumb="" order="listorder DESC" step="3,5"} {loop $data $r} <li> 阅读全文
posted @ 2013-02-25 15:26 FreeSpider 阅读(505) 评论(0) 推荐(0) 编辑
摘要: {pc:content action="lists" moreinfo="1" catid="$catid" num="25" order="id DESC" page="$page"}{loop $data $r}<li><span class="rt">{date('Y-m-d H:i:s',$r[inputtime])}</span>·<a href="{$r[url]}& 阅读全文
posted @ 2013-02-25 15:25 FreeSpider 阅读(626) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 35 下一页