hi all,
i have this script that checks for a file on a machine on the network. if it finds this file then it redirects to that machine. this works fine locally, but not from external. does naybody know if this is possible? thanks
<?php
if($handle = fopen("http:\\192.168.0.1\index.php", "r"))
{
header("location:http:\\192.168.0.1");
}
else
{
echo ("does not work");
}
?>