Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
Realistic 11 - Removing Database
im using cURL on this .. am having trouble trying to LOG IN to the adminpanel
I logged in hbh and set cookie, then tried to do the same for the level 11 but im stuck .. am trying to do this so I can get the data from backup.php and run the script to double the number.
anyone pm me to see my code and find out what I am doing wrong.
NOTE: this is only a snippet, not showing complete unless requested
// code here to login hbh and set cookie to $cookieFile//
// rest of code is for level 11 //
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $gameurl);
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookieFile);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
ob_start();
$final = curl_exec ($ch);
ob_end_clean();
curl_close ($ch);
echo "Final result: <br />".$final; // shows only the login page (not logged in)