Please help !
I want to use fopen(), but we use a masquerading firewall. internal it works, but trying to reach a file outside forget it. the response maybe reach the firewall, but not me. poor me.
if (!$file)
{
exit;
}
$html="";
while (!feof ($file))
{
$line = fgets ($file, 1024);
$html .= $line;
}
fclose($file);
echo $html;
What port or way is fopen using to connect a file? Is there a way to use it with a firewall ? Maybe fsockopen ? But without a proxy.
Thanks for help,
Sebbi