php : 看书网页 : 上一页,下一页_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > php : 看书网页 : 上一页,下一页

php : 看书网页 : 上一页,下一页

 2017/4/16 5:34:20  belldeep  程序员俱乐部  我要评论(0)
  • 摘要:get.php<?php$dir=$_GET["dir"];$pre=$_GET["pre"];$end=(integer)$_GET["end"];$i=(integer)$_GET["i"];$i1=$i-1;$i2=$i+1;$s=sprintf("%03d",$i);$path=$dir."/".$pre.$s.".jpg";?><html><head><basetarget="top"/><metahttp
  • 标签:PHP 网页
get.php
class="php">
<?php
 $dir= $_GET["dir"];
 $pre= $_GET["pre"];
 $end= (integer)$_GET["end"];
 $i= (integer)$_GET["i"];
 $i1 = $i -1;
 $i2 = $i +1;
 $s = sprintf("%03d", $i);
 $path=$dir."/".$pre.$s.".jpg";
?>
<html>
  <head>
   <base target="top"/>
    <meta http-equiv="Content-Type" content="text/html; charset=GBK">
    <title>IT Books </title>
    <style type="text/css">
      body {background:#FFFFFC;}
    </style>
  </head>
<body>
<?php
  if($i>1){
    echo '<a href="get.php?dir='.$dir.'&pre='.$pre.'&end='.$end.'&i='.$i1.'" >上一页</a> ';
  } else {
    echo '这是首页';
  }
  echo "&nbsp;&nbsp;&nbsp;&nbsp;\n";
  echo '<a href="'.$dir.'.htm" >中文目录</a>'."&nbsp;&nbsp;&nbsp;&nbsp;\n";
  if($i< $end){
    echo '<a href="get.php?dir='.$dir.'&pre='.$pre.'&end='.$end.'&i='.$i2.'" >下一页</a>'."\n";
  } else {
    echo '这是尾页';
  }
?>

  <p>
  <img src="<?echo $path;?>" alt="<?echo $path;?>"/>
  </p>
  
<?php
  if($i>1){
    echo '<a href="get.php?dir='.$dir.'&pre='.$pre.'&end='.$end.'&i='.$i1.'" >上一页</a> ';
  } else {
    echo '这是首页';
  }
  echo "&nbsp;&nbsp;&nbsp;&nbsp;\n";
  echo '<a href="'.$dir.'.htm" >中文目录</a>'."&nbsp;&nbsp;&nbsp;&nbsp;\n";
  if($i< $end){
    echo '<a href="get.php?dir='.$dir.'&pre='.$pre.'&end='.$end.'&i='.$i2.'" >下一页</a>'."\n";
  } else {
    echo '这是尾页';
  }
?>
</body>
</html>
发表评论
用户名: 匿名