Advertisement
Guest User

Untitled

a guest
May 30th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. if (file_exists('SpellDatabaseXML.xml'))
  2. {
  3. $xml = simplexml_load_file('SpellDatabaseXML.xml');
  4.  
  5. foreach($xml->children() as $spell)
  6. {
  7. echo "ID: ".$book->id."<br />";
  8. echo "Name: ".$book->name." <br />";
  9. echo "Life: ".$book->life." <br />";
  10. echo "Damage: ".$book->damage." <br />";
  11. echo "Speed: ".$book->speed." <br />";
  12. echo "Cast Time: ".$book->castTime." <br />";
  13. echo "Spell Type: ".$book->spellType." <br />";
  14. echo "<hr/>";
  15. }
  16.  
  17. }
  18. else
  19. {
  20. echo 'Could not find file.';
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement