Using Snoopy I make a request, but it seems that a different SESSION is used for the POST? When I echo the results of the request the SESSION is set but after clicking any link the page returns to a non SESSION-set state.
Currently i'm using v.little code to make the request
$dashboard = new Snoopy;
$dashboard->referer = "URL";
$dashboard->httpmethod = "POST";
$dashboard->submit("URL", $_POST);
echo $dashboard->results;
I don't have the ability to use cURL as I have no control over the server.
I have a feeling its due to Snoopy making a new SESSION_ID for the HTTP POST? i've seen bits and bobs on the net but nothing concrete on how to maintain SESSION between these requests?
Cheers, MiG