Hi all
If my php script receive data from another script via http( METHOD POST).
How can i get content?
Please suggest.
This below is another scipt posted to my script:
POST http://foo.bar.com/status.php HTTP/1.1
Host: foo.bar.com
Cookie: Name=abc; Domain=.foo.bar; Path=/app-dir; \
JSESSIONID=123; VERSION=1
Content-Length: 11
900 Success
The content means "900 Success"
Regard,
Abdun
Please suggest about get content
Moderator: General Moderators
I am not entirely sure if you are using cookies or forms or both to submit data to PHP.
For forms, check this link viewtopic.php?t=511
Cookies are generally not a good idea to pass values from one page to the other since they could be disabled.
If I misunderstood you, please clarify.
For forms, check this link viewtopic.php?t=511
Cookies are generally not a good idea to pass values from one page to the other since they could be disabled.
If I misunderstood you, please clarify.