Hi,
I'm trying to access a remote XML file by using a PHP page. It's success if I use xmldocfile($file_name) to create a dom object but I can't use xmldocfile($file_url) instead.
I use fopen($file_name,"w"), then fputs($file, $something) to write something to that file. It's OK and it SEEMS to be OK if I use fopen($file_url,"w"), then fputs($file, $something). But actually, information ISNOT written to the file.
So, how do you solve these problems? Thank a lot,
SummerHill