如何使用CodeIgniter中的header()函数刷新页面并重定向到另一个页面

时间:2015-09-27 07:33:39

标签: php codeigniter

我可以使用普通的PHP刷新页面。 如何使用CodeIgniter执行此操作?

我在PHP中尝试这个:

<html>
<title>Thank You</title>
<body bgcolor="#E6E6FA">
  <center>
    <h1>Thank You For Visiting...Wish you to visit again...</h1>
  </center>
  <?php
    header(refresh:5; url="login_input.php");
  ?>
</body>
</html>

我知道我必须写下这个:

"<?php echo base_url();?>index.php/welcome/"

但是在哪里?

我是否必须在模型和控制器中创建功能才能执行此操作?

1 个答案:

答案 0 :(得分:0)

感谢大家的回复......非常感谢Dan Belden先生提供了收集知识的链接。

实际上我想要的代码如下......

<html>
<title>Thank You</title>
<head>
<meta HTTP-EQUIV="REFRESH" content="5; url=<?php echo    
base_url();?>index.php/welcome/login">
</head>
<body bgcolor="#E6E6FA">
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<center><h1>Thank You For Visiting...Wish you to visit again.......  
</h1></center>
</body>
</html>