Is there any way to login into my
www.example.com via external script using Curl .
I tried to login via curl but It says Thank you for loging in...... then it logs out instead of going to my index page. here is my Curl Code...................................
$ch = curl_init();
$url="www.example.com";
$postdata="url=/admincp/&logintype=cplogin&vb_login_username=myusername&vb _login_password=mypassword&do=login&securitytoken= guest&cookieuser=1";
curl_setopt ($ch, CURLOPT_URL, $url . "login.php?do=login");
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
curl_setopt ($ch, CURLOPT_TIMEOUT, 60);
curl_setopt($ch, CURLOPT_HEADER,0);
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 0);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_COOKIEJAR, $cookie);
curl_setopt ($ch, CURLOPT_COOKIEFILE,$cookie);
curl_setopt ($ch, CURLOPT_POSTFIELDS, $postdata);
curl_setopt ($ch, CURLOPT_POST, 1);
curl_setopt ($ch, CURLOPT_REFERER, "http://example.com/");
$result = curl_exec($ch);
echo $resul = curl_init();

Please help me?