I would like to use a php header('Location: newpage.php') to redirect.
I got no error, but Jquery mobile seems to fail loading the destination page and the address bar stays with the old address.
Do you have an advice please ?
Thanks!
|
|
try to add |
|||||
|
|
That code sends a 302 redirect header to the user's browser, instructing it to redirect to the provided URL. It should work. Have you checked the syntax? Information here: http://www.php.net/manual/en/function.header.php |
|||
|
|
|
I do a header('Location: newpage.php') combined with JQuery Mobile all the time and it works no problem. I suspect you are trying to send the header after loading any html, which will not work. The php header must occur before any output, including html, JQuery Mobile, etc. |
|||
|
|
|
Try turning error reporting on:
|
|||
|
|
|
I had the same problem on Node.js + JQM and the answer wenkhairu gave fixed it.
The problem is that JQM hijacks navigation behavior and use ajax to navigate, if you put |
|||
|
|