底部点击隐藏和弹出的效果
摘要:<!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
阅读(443)
推荐(0) 编辑
MongoDB
摘要:一.关于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
阅读(1061)
推荐(1) 编辑
服务器每天早上备份一次 MySQL 数据库并自动打包,同时删除 5 天前的备份文件
摘要:终于让服务器每天早上备份一次 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
阅读(474)
推荐(0) 编辑
判断php数组的维度
摘要:<?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
阅读(641)
推荐(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
阅读(404)
推荐(0) 编辑