Hi,
if I want to use http_get in order to do the following get request:
http://example.com?user=bob&password=password
should it look like?:
or like:Code:$result=http_get("http://www.example.com/", array("user"=>"bob","password"=>"password"), $info);
Code:$result=http_get("http://example.com?user=bob&password=password", , $info);


Reply With Quote

Bookmarks