<?php
// sukuriam curl saltini
$ch = curl_init();
// nustatom url ir kitas opcijas su curl_setopt
curl_setopt($ch, CURLOPT_URL, "http://www.nba.com/games/20071030/scoreboard.html");
// imam url ir spausdinam
curl_exec($ch);
// isjungiam curl
curl_close($ch);
?>