lhs
lhs

Reputation: 1

PHP file_get_contents cookie

Hi all I need to store my cookies on another server. Let me explain with file_get_contents I print the content of this page

http://ESEMPIO/#/search?c[q]=$c&MIA_STRINGA[section]=audio

But I can not because you must first log in, so my question is Cookies can store and use the function file_get_contents?. Thanks

Upvotes: 0

Views: 582

Answers (1)

Teson
Teson

Reputation: 6736

You want your webapplication to logon to another webapplication?

cURL is perfect for that, see http://www.copypastecode.com/27076/ for example.

regards, /t

Upvotes: 1

Related Questions