You can update the Snoopy class for use more cookies.
Replace this :
while(list($cookieKey,$cookieVal) = each($this-
>cookies))
$headers .= "Cookie: ".$cookieKey."=".$cookieVa
l."\n";
By :
$headers .= "cookie:";
while(list($cookieKey,$cookieVal) = each($this-
>cookies))
{
$headers .= $cookieKey."=".$cookieVal.";";
}
$headers .= "\n";
Logged In: NO
:)