If you need just to open url why use advanced curl. I like the simple and easy get_file_contents function
PHP Code:
for($i=$y;$i<$x;$i++) { $page=file_get_contents('http://www.mysite.com/blah&u=' . $i); //echo $page; //display the page contents
sleep($n); }
|