你的意思 是不是通过传id来实现“转页”?
也就是页面中的数据是通过id的变化而变化的
实际也就是不转页的,只需要把变化的地方通过动态来实现
通过id的变化而变化

解决方案 »

  1.   

    http://www.williamlong.info/archives/1289.html
      

  2.   

    将index.php另存
    循环1、查询表2、循环每个记录,取出id3,在循环中将index.php的生成程序写在中间
      

  3.   


    $sql="select id from $table order by id";
    $sa=$db->query($sql);
    while ($sb=$db->fetch_array($sa)){
        //开始转换页面
    }
      

  4.   

    sql="select id from $table order by id";
    $sa=$db->query($sql);
    while ($sb=$db->fetch_array($sa)){
        //开始转换页面
    }怎样转换页面,我在这里我怎样调用 如执行页面aa.php  执行完后执行bb.php等等
      

  5.   

    .php 后缀的,你的是伪静态?index.php?id=XXXX 生成的是html页面,还是缓存啊?