specht1 wrote:
> I've read the article, but somehow I do not know what
you mean...
The cURL script in that article acts as a proxy for a remote
XML feed.
If your hosting company hasn't disabled allow_url_fopen, you
can create
an even simpler script:
<?php
$url = '
http://www.example.com/my.xml';
$remote = file_get_contents($url);
header('Content-type:text/xml');
echo $remote;
?>
--
David Powers, Adobe Community Expert
Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
Author, "PHP Solutions" (friends of ED)
http://foundationphp.com/