&item=×××××
用&链接

解决方案 »

  1.   

    href="../common/action/location.php?item=INFO_PROCESS_ALL&item1=xxxxxx"你的2个item都是一样的?那你可以在接收item的页面把他们split分开
      

  2.   

    其实不建议用get方法,?传旨
    建议用hide控件,第2张页面同样的方法。
      

  3.   

    问一句,我不懂php,jsp可以request.getParameter,php呢
      

  4.   

    split怎么用啊?听上去很简单
      

  5.   

    split用法可以去查找相关语法的说明。。asp:
    str1 = "abc|def"
    arr = Split(str1,"|")
    for t = 0 to ubound(arr)
    Response.write(arr(t))
    next