$init = curl_init();
curl_setopt($init, CURLOPT_HEADER, 0);
curl_setopt($init, CURLOPT_RETURNTRANSFER,1);
curl_setopt($init, CURLOPT_URL, \"https://webmail.aol.com/rlogin.adp?query\");
curl_setopt($init, CURLOPT_URL, \"https://webmail.aol.com/rlogin.adp?query\");
$result = curl_exec($init);
curl_close($init);
I have 2 URLs and plan to add more. I want to keep a persistent connection. The problem is that curl_exec() saves the results of the last URL to $result instead of both. Any of you smart dudes know how i can get this thing to work the way i want it?