bdee1 Posted January 16, 2009 Share Posted January 16, 2009 all the examples i have see for using siimpleXML to open an xml file assume that the xml file is in the same folder as the php page... so it looks something like this: $xml = simplexml_load_file('file.xml'); but what if the xml file is in another path like this: $xml = simplexml_load_file('./data/file.xml'); when i try using the latter, it tells me: Warning: simplexml_load_file() [function.simplexml-load-file]: I/O warning : failed to load external entity "./data/file.xml" so whats the correct way to use simplexml to open a file in another folder? Link to comment https://forums.phpfreaks.com/topic/141116-solved-using-simplexml-to-open-an-xml-file-in-another-folder/ Share on other sites More sharing options...
rhodesa Posted January 16, 2009 Share Posted January 16, 2009 that is correct...what is the path to the script and what is the path to the file? Link to comment https://forums.phpfreaks.com/topic/141116-solved-using-simplexml-to-open-an-xml-file-in-another-folder/#findComment-738583 Share on other sites More sharing options...
bdee1 Posted January 16, 2009 Author Share Posted January 16, 2009 nevermind - i found my mistake...based on the file locations it shoudl have been ../data/file.xml. problem solved. Link to comment https://forums.phpfreaks.com/topic/141116-solved-using-simplexml-to-open-an-xml-file-in-another-folder/#findComment-738591 Share on other sites More sharing options...
rhodesa Posted January 16, 2009 Share Posted January 16, 2009 i ALMOST suggested that in my original post too...common mistake Link to comment https://forums.phpfreaks.com/topic/141116-solved-using-simplexml-to-open-an-xml-file-in-another-folder/#findComment-738594 Share on other sites More sharing options...
bdee1 Posted January 16, 2009 Author Share Posted January 16, 2009 thanks again for your help!! Link to comment https://forums.phpfreaks.com/topic/141116-solved-using-simplexml-to-open-an-xml-file-in-another-folder/#findComment-738596 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.