Lets say i have cookie.txt how can i login via cookie.txt and curl to remote site? i need to remote send that cookies ...
Include this in your cURL code curl_setopt($ch, CURLOPT_COOKIEFILE, "cookie.txt"); curl_setopt($ch, CURLOPT_COOKIEJAR, "cookie.txt"); PHP: