Welcome Guest, Not a member yet? Register   Sign In
Redirect after 3 seconds
#1

[eluser]eyupci[/eluser]
Hi there,

I'm newbie in CI. I have a dumb question.

Can I redirect page after 3 seconds with using redirect function in CI.

thanks
#2

[eluser]tchule[/eluser]
Hello,

The redirect should be launched from the client side I think.

You should do something like this in javascript (in the head section) :

Code:
function redirect(page) {
[removed]=page;
}

setTimeout('redirect("http://mypage/")',5000);

Tchule
#3

[eluser]richthegeek[/eluser]
you could always use the usleep php command to pause the script for 3 seconds... not the most elegant solution but w/e...
#4

[eluser]Michael Wales[/eluser]
Don't ignore the most simple solutions.
#5

[eluser]Iverson[/eluser]
[quote author="Michael Wales" date="1213043381"]Don't ignore the most simple solutions.[/quote]

Yeah but I think he was wanting to use CI's redirect function. I'm having the same issue. redirect() should have a parameter for seconds if you're using the refresh method.
#6

[eluser]mashary[/eluser]
that's right, redirect function should have a paramenter redirect(4) direct in 4 sec. hope someone develop




Theme © iAndrew 2016 - Forum software by © MyBB