read file local not remote

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



$url =www.mysite.ru/some.txt;

$fa = fopen($url,"r");

/*
$fa = fsockopen("http://mysite.ru";, 80, &$num_error, &$str_error, 30);
if(!$fa)
   { print "Weather is not available: $str_error ($num_error)\n"; }
else
{
  fputs($fa,"GET /some.txt HTTP/1.0\n\n");
  $answer=fgets($fa,128);



I use the above code to read a file on remote server but now I need to read 
it on local server,question is how.

Cheers
Chris

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux