PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
HTTP/1.1 302 Found
Date: Tue, 26 Jul 2005 09:34:34 GMT
Server: Apache
Location: http://www.somewhere.com/someredirect.html?data=somedata
Content-Type: text/html; charset=iso-8859-1 X-Cache: MISS from www.somewhere.com
Connection: close
Found
The document has moved here.
I thought header was taken care by Apache - how do I get this to work correctly ? Like as if a user has manually posted the data.
Thanks
Last edited by anjanesh on Tue Jul 26, 2005 7:07 am, edited 1 time in total.
Looks like it's working fine to me. The page you're requesting is returning an HTTP 1.1 302 code.. That means the page has moved permanently. You need to follow the link in the header to where the page now resides and get it from there instead.
If you were using the CURL library it would do all that for you.