I'm trying to display all the cookie values of any REMOTE URL just like - http://www.cookie-checker.com/
Here what i'm thinking -
$req = new HTTP_Request($url);
$req->setMethod(HTTP_REQUEST_METHOD_GET);
$req->sendRequest();
$cookies = $req->getResponseCookies();
print_r($cookies);