2
There’s a way to give refresh
to a page in my example:
Page login > send data to the processa.php
> sends to a menu
Sometimes when it gets to the lawsuit, it gets "stuck" and then I wanted to know a way that it didn’t happen.
Thank you
2
There’s a way to give refresh
to a page in my example:
Page login > send data to the processa.php
> sends to a menu
Sometimes when it gets to the lawsuit, it gets "stuck" and then I wanted to know a way that it didn’t happen.
Thank you
5
If I understand correctly, this is simple to do with PHP:
header("Refresh: 0");
This will reload your current page, and if you need to redirect to another page, use the code below:
header("Refresh: 0; url=pagina2.php");
Note: A discussion on the same subject can be found (in English) in the link: https://stackoverflow.com/questions/12383371/refresh-a-page-using-php
3
It would be something like:
header("Refresh: 20; url = menu.php");
You put Refresh at 20, if it crashes it will already come out
1
take a look http://php.net/manual/en/function.header.php
in your case I would try something like
header("Refresh:5");//recarrega em 5 segundos
but you can’t figure out why you’re stopping?
Browser other questions tagged php
You are not signed in. Login or sign up in order to post.
Solved. Thank you all for your help!
– programmer2016