摘要:
var t_click=0; var timer= function(){ setTimeout('timer()',1000); t_click +=1; $("#timer").text(t_click); if(t_click==5){ window.location.href="./index.php"; } } 阅读全文
posted @ 2013-01-09 15:09
akulubala_
阅读(155)
评论(0)
推荐(0)
摘要:
DELIMITER $$ #定义结束标志DROP PROCEDURE IF EXISTS `pr_add`;$$#创建存储过程CREATE PROCEDURE `pr_add`() BEGIN declare n int default 0; declare bb int; DECLARE cur_1 CURSOR FOR SELECT action_id FROM useraction where uid=xxx;//取得游标,相当于数字的key DECLARE CONTINUE ... 阅读全文
posted @ 2013-01-08 19:32
akulubala_
阅读(144)
评论(0)
推荐(0)
摘要:
首先是使用PHP Reader 读取Excle内容: 1 require("http://www.cnblogs.com/PHPExcel/Classes/PHPExcel.php"); 2 $file = "D:\\datas.xlsx"; 3 if(!file_exists($file)){ 4 die("no file found in {$file}"); 5 } 6 $datasReader = PHPExcel_IOFactory::load($file); 7 $sheets = $datasReader->get 阅读全文
posted @ 2013-01-05 16:23
akulubala_
阅读(538)
评论(0)
推荐(1)
浙公网安备 33010602011771号