i was trying some thing but it doenst seem to work out that well.. it only outputs CURLE_URL_MALFORMAT & No URL set! how can i fix this?..
It needs to echo out the text on the page $link1
<?php
$link1 = "http://www.lubbo-zone.nl/script2/?name=iChris.";
$ch = curl_init();
$opts = [ 'CURLOPT_RETURNTRANSFER' => 1 , 'CURLOPT_URL' => "{$link1}"];
curl_setopt_array($ch , array($opts));
$response = curl_exec($ch);
echo curl_errno($ch) . '<br/>';
echo curl_error($ch) . '<br/>';
var_dump($response);
?>
