![]() |
Redirect, Refresh, after set time - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: Redirect, Refresh, after set time (/showthread.php?tid=67501) |
Redirect, Refresh, after set time - usr_ny - 03-01-2017 What the standard (recommended/best) way to show a response page and then have the browser request a different page after some set time, like 5 seconds (using Codeigniter)? RE: Redirect, Refresh, after set time - InsiteFX - 03-01-2017 jQuery RE: Redirect, Refresh, after set time - usr_ny - 03-01-2017 Thanks. What if javascript is disabled? How is js (jQuery) better/safer than the php header() function? PHP Code: header("Refresh:5; url={$controller}") |