I am able to refresh a page using normal PHP. How do I do this with CodeIgniter?
I was trying this in 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>
I know to I have to write this:
"<?php echo base_url();?>index.php/welcome/"
But where?
Do I have to create functions in model and controller to do this?
etc` – Tobia Tesan Sep 27 '15 at 07:39