i am using http class and it stuck at setting up cookies on the line where it says fuction setcookies.
this is my code
require_once ('../http.php');
$http=new http_class;
$http->user_agent="Mozilla/5.0 (Intel Mac OS X) Gecko/20070515 Firefox/2.0.0.4";
$error=$http->GetRequestArguments($url,$arguments);
foreach ($cookie as $c) {
$t = explode('=',$c);
$http->SetCookie($t[0],$t[1],"","/",".example.com"); //problem is here i think
}
$arguments["Headers"]["Referer"] = $referer;