Re: [PHP] reload page without use header

2012-06-17 Thread Stuart Dallas
On 17 Jun 2012, at 09:06, Farzan Dalaee wrote: > is there any way to reload page without using header('location :index.php'); > and javascript? When you say "reload page" do you mean redirect to another page or refresh the current page? You can reload or redirect a page using a meta tag in you

Re: [PHP] reload page without use header

2012-06-17 Thread As'ad Djamalilleil
you can use header("Refresh: 60"); to refresh your current page if that what you really need. 60 means it will be refresh in 60 seconds. On Sun, Jun 17, 2012 at 12:06 AM, Farzan Dalaee wrote: > hi guys > is there any way to reload page without using header('location > :index.php'); and javascript

Re: [PHP] reload page without use header

2012-06-17 Thread Simon Schick
Hi, Farzan Redirecting is something you can do in a way the user doesn't see anything (I call them server-side redirects) and in a way the user get's informed that the url has changed (I call them client-side redirects). What I mean with server-side (mostly called internal redirects) is if the us

[PHP] reload page without use header

2012-06-17 Thread Farzan Dalaee
hi guys is there any way to reload page without using header('location :index.php'); and javascript? Best Regards -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php