Add exams from exam100 to exam150

This commit is contained in:
2024-05-13 08:50:26 +02:00
parent 4fd956ddac
commit 56492d171c
13 changed files with 366 additions and 0 deletions

13
exam104/index.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
//Reading a XML file
$xml = simplexml_load_file('example.xml');
foreach($xml->producer as $producer){
echo $producer->name.' ('. $producer->age .')'. "<br>";
foreach($producer->show as $show){
echo $show->showname. ' ('.$show->showdate.')' .'<br>';
}
}
?>