他の人からCookieを取得できますが、このサイトwww.dramexchange.comからは取得できませんか?誰もが理由を知っていますか?多分誰かがphpとcurlでそれを行うことができますか?:>
$ch = curl_init();
curl_setopt($ch, CURLOPT_COOKIEJAR, "cookieFileName");
curl_setopt($ch, CURLOPT_URL,"http://www.dramexchange.com");
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
ob_start(); // prevent any output
curl_exec ($ch); // execute the curl command
ob_end_clean(); // stop preventing output
curl_close ($ch);
unset($ch);