PHP interesse |
|
Ik begin met SimpleXML en ik heb de volgende code:
<?php
simplexml_load_file('forum.xml');
foreach ($forum->topic as $topic) {
echo $topic->title;
}
?>
<?php simplexml_load_file('forum.xml'); foreach ($forum->topic as $topic) { } ?>
en in m'n xml bestand staat dit:
<?xml version="1.0" encoding="ISO-8859-1"?>
<forum>
<topic>
<title>Testje</title>
</topic>
</forum>
<?xml version="1.0" encoding="ISO-8859-1"?> <forum> <topic> <title>Testje</title> </topic> </forum>
ik krijg het volgende:
[error]
Microsoft Windows XP [versie 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.
C:\Documents and Settings\PC Beneden>C:\php.lnk C:\testxml.php
C:\Documents and Settings\PC Beneden>
Warning: simplexml_load_file(): I/O warning : failed to load external entity "te
stje.xml" in C:\testxml.php on line 2
Warning: Invalid argument supplied for foreach() in C:\testxml.php on line 3
[/error]
maar ik weet 100% zeker dat C:\testje.xml bestaad... wat gaat er fout?
|