Advertisement
Guest User

xml_kod

a guest
Sep 18th, 2014
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <data>
  3.     <default_path>#add_it #quantity_wanted_p span</default_path>
  4.     <sites>
  5.          <site>
  6.             <url>www.strona1.pl</url>
  7.             <book>95</book>
  8.         </site>
  9.         <site>
  10.             <id>2</id>
  11.             <url>www.strona2.pl</url>
  12.             <book>114</book>
  13.         </site>
  14.     </sites>
  15. </data>
  16.  
  17.  
  18. /* kod do wywołania */
  19. $xml = simplexml_load_file('sites.xml');
  20. foreach ($xml->sites->site[1] as $sites)
  21.     {
  22.     echo "$sites->book<br />";
  23.    
  24.     }
  25. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement