Re: file() works in Windows not on Linux



ah, ok
if you dont actually NEED the file
you can (in PHP 5)

$remote_url = "http://somedomain.com/somepage.php?var=value";;
if (is_readable($remote_url))
$data = file($remote_url);

.