0
I created this following xml file:
<?xml version="1.0" encoding="UTF-8"?>
<usuarios>
<usuario>
<nome>Andrêy Ferraz</nome>
<idade>25</idade>
</usuario>
<usuario>
<nome>Carlos Meira</nome>
<idade>30</idade>
</usuario>
<usuario>
<nome>Fernando Amarelo</nome>
<idade>40</idade>
</usuario>
<usuario>
<nome>Carlos Santos</nome>
<idade>50</idade>
</usuario>
<usuario>
<nome>Jose Santana</nome>
<idade>78</idade>
</usuario>
<usuario>
<nome>Marcus Santos</nome>
<idade>56</idade>
</usuario>
<usuario>
<nome>Jose Ferreira</nome>
<idade>67</idade>
</usuario>
<usuario>
<nome>Wallatas Silva</nome>
<idade>78</idade>
</usuario>
<usuario>
<nome>Marcus Vieira</nome>
<idade>34</idade>
</usuario>
</usuarios>
Here I created a case that allowed me to import this file and identify its location on my server:
case"importar"; //importando arquivo xml
importarUsuario ($conexao, "usuario/_usuarios.xml");
break;
Here I run the function and try to print the file on the screen:
function importarUsuario ($conexao, $arquivosXml){
$xml = simplexml_load_file($arquivosXml);
print_r($xml);
So if you’ll just give me all the blanks, someone would be kind enough to show me where my mistake is??
Thank you so much, so I can solve it just another way. I’ll show you answering below.
– WPfan