Question:
Is it possible to log into a site then read information off the site under that user (in PHP)?
example:
Many websites are dynamic and have php drawing information from databases. Lets say example.com had a login.
While logged in the page example.com/test.php displayed: “hello user”, and when not logged in would display : “you’re not a user sign in here”
Lets say the authentication process was through sessions, the user would login by posting a form with tags “user” and “pass” if correct would start a session that would allow the user to see the message for them on example.com/test.php
Question:
Is it possible to log into a site then read information off the site under that user?
I’ve been looking around and am not sure how to approach this. Anything would help. Thanks in advance.
you can (with curl)