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

"Mindhunter" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to