Reputation: 23
I want to login into a website, make some choices there, submit and logout.
Not so impressive by itself, but I want to do it with PHP. And without cURL, as it is not installed on my server.
How do I do it?
Upvotes: 1
Views: 330
Reputation: 794
without cURL, you'll need to use PHP's Stream functions, which can accomplish the same things, if with slightly more code. Start with stream_context_create and work your way through the manual
Upvotes: 1