从PHP重定向无效

时间:2015-09-18 13:29:17

标签: javascript php jquery html

我有一个显示bootstrp-slider的页面。除了在滑块图片上单击时转到特定页面,它工作正常。

主要php:bootstrao-slider.php

这里有一个div:

$d.='
div>
  <img u="image" src="../images/'.$sliderskin.'">
  <div u="caption" t="NO" t3="RTT|2" r3="137.5%" du3="3000" d3="500"
       style="position:absolute;width:900px;height:420px;top:30px;left:550px;">
  <a href="hooks/slider-home.php"><img src="../images/'.$picture.'"
       style="position:absolute;width:700px;height:340px;top:0px;left:0px;"></a>
  </div>  

  <div style="position:absolute;width:500px;height:120px;top:15px;left:30px;
       padding:5px;text-align:left;line-height:45px;font-size:30px;
       font-weight:700;color:<?php echo $labelcolour;?>">
       '.$label1.'<br>'.$label2.'<br>'.$label3.'<br>'.$label4.'<br>'.$label5.'
       <br>'.$label6.'<br>'.$label7.'<br>'.$label8.'<br>
  </div>
</div>';

“hooks / slider-home.php”做了很少的事情并尝试转到另一个页面。代码是:

if ($callfunc == 'Renting'){
    // ...
    header('location:../RENTINGT_view.php?selectedID='.$itemid);
}

if ($callfunc == 'Rent-to-Own'){
    // ...
    header('location:../RENTTOOWNT_view.php?selectedID='.$itemid);
}

header('location:../index.php');

前两次重定向调用

header('location:../RENTINGT_view.php?selectedID='.$itemid);  

header('location:../RENTTOOWNT_view.php?selectedID='.$itemid); 

不起作用,而最后一个起作用。我无法理解为什么会这样。

如果有人可以帮我解决这个问题,我可以通过Team Viewer发送完整的代码或显示会发生的事情。

0 个答案:

没有答案