$username, 'password' => $password ])); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookies.txt'); // Save cookies to a file curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookies.txt'); // Use cookies from the file // Execute the request $response = curl_exec($ch); // Check for errors if (curl_errno($ch)) { echo "Error logging into $url: " . curl_error($ch) . "
"; } else { echo "Successfully logged into $url
"; } // Close the cURL session curl_close($ch);}// Loop through each URL and log inforeach ($urls as $url) { loginToWebsite($url, $username, $password);}?>