have a look at the manual (php.net), entry for fopen()
fopen() creates a filehandler for a file, so you have to specify
an access mode
in this case "r" is the only choice which makes sense, cause you don't have
write access on a remote server I guess
hence:
$filehandler = fopen("http://www.formula-1.co.il/index.php","r");