Date: 11/16/01
- Next message: Nate Carlson: "[PHP] Example code for multiple uploads? (Using PHP 4.0.6)"
- Previous message: David Otton: "[PHP] Different include paths for different virtualhosts?"
- In reply to: MindHunter: "[PHP] Info on another page"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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>
- Next message: Nate Carlson: "[PHP] Example code for multiple uploads? (Using PHP 4.0.6)"
- Previous message: David Otton: "[PHP] Different include paths for different virtualhosts?"
- In reply to: MindHunter: "[PHP] Info on another page"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

