码迷,mamicode.com
首页 > 其他好文 > 详细

跳转页面&回到上一页

时间:2016-04-06 16:48:36      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:

1.php

<?php
header(‘Location:2.php‘); //echo不能在其前面
echo ‘1‘;

 

 

2.js

<?php
echo ‘2‘;
echo ‘<meta http-equiv="refresh" content="10;url=1.php">‘;

 

3.js

<?php
echo ‘4‘;
echo "<script>location=‘1.php‘;</script>";
echo ‘3‘;
//echo "<script>location.href=‘1.php‘;</script>"; 也行

//回到上一页
//echo "<script type="text/javascript">history.back();</script>";
//回到上两页
//echo "<script type="text/javascript">history.go(-2);</script>";

$User = M(‘User‘); // 实例化User对象
$count = $User->where(‘status=1‘)->count();// 查询满足要求的总记录数
$Page = new \Think\Page($count,25);// 实例化分页类 传入总记录数和每页显示的记录数(25)
$show = $Page->show();// 分页显示输出// 进行分页数据查询 注意limit方法的参数要使用Page类的属性
$list = $User->where(‘status=1‘)->order(‘create_time‘)->limit($Page->firstRow.‘,‘.$Page->listRows)->select();$this->assign(‘list‘,$list);// 赋值数据集
$this->assign(‘page‘,$show);// 赋值分页输出
$this->display(); // 输出模板

跳转页面&回到上一页

标签:

原文地址:http://www.cnblogs.com/hfdp/p/5359823.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!