I get this error:
Warning: SimpleXMLElement::__construct() [simplexmlelement.--construct]: Entity: line 23: parser error : Premature end of data in tag catalog line 2 in C:\xampp\htdocs\php_exercise\exercise3_1.php on line 7
Warning: SimpleXMLElement::__construct() [simplexmlelement.--construct]: in C:\xampp\htdocs\php_exercise\exercise3_1.php on line 7
Warning: SimpleXMLElement::__construct() [simplexmlelement.--construct]: ^ in C:\xampp\htdocs\php_exercise\exercise3_1.php on line 7
Fatal error: Uncaught exception 'Exception' with message 'String could not be parsed as XML' in C:\xampp\htdocs\php_exercise\exercise3_1.php:7 Stack trace: #0 C:\xampp\htdocs\php_exercise\exercise3_1.php(7): SimpleXMLElement->__construct('<?xml version="...') #1 {main} thrown in C:\xamp
<?php
$file = file_get_contents('books.xml');
$buku = new SimpleXMLElement($file);
foreach ($buku as $buku){
# echo buku attribute
//echo $buku['isbn']."<br>";
# echo childs
echo $buku->judul."<br>";
}
?>
line 7: foreach ($buku as $buku){
Why the error appears?
Thanks.