<?php $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "https://www.google.com/"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $response = curl_exec($ch); if (curl_error($ch)) { $error_msg = curl_error($ch); var_dump($error_msg);exit; } curl_close($ch); var_dump($response);
You have javascript disabled. You will not be able to edit any code.