/ Published in: PHP

Expand |
Embed | Plain Text
$ch = curl_init(); curl_setopt($ch, CURLOPT_URL,"http://www.google.com"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $contents = curl_exec ($ch); curl_close ($ch);
You need to login to post a comment.