[PHP] Re: Info on another page From: _lallous (elias_bachaalany <email protected>)
Date: 11/16/01

you can fopen() remote files!
$fp = fopen("www.site.com/infodir/exchange.txt","r");
$rates = fread($fp, ...............);
fclose($fp);

"Mindhunter" <MindHunter <email protected>> wrote in message
news:20011116135632.41207.qmail <email protected>
> Hi,
>
> Lets say I want to get the current exchangerate from another page on the
web
> and use it in calculations on my own page. How do I retrieve info from
> another site once someone access my page?
>
> Tx
> MH
>
>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: php-general-unsubscribe <email protected>
For additional commands, e-mail: php-general-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>