hi ! i would very much appreciate any help on this
problem :
when i do this:
$host = 'http:/spectral.sytes.net/';
$file ='projecto/xml/pessoal.xml';
if (!( $data = domxml_open_file($host.$file)))
print "error loading document";
i allways get an error ( and the quotes are not the problem cos if i try with single quotes the result is the same). however if i do it this way ( which i dont want) :
if (!($data = domxml_open_file('http://spectral.sytes.net/projecto/xml/pessoal.xml')))
print "error loading document";
it works 🙁 ...
can anyone help me on this?