Adilol

asd

Oct 26th, 2011
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2. $url = 'clientmsg.xml';
  3. $xml = simplexml_load_file($url);
  4. //get stuff now
  5. $title=$xml->header[0]->title;
  6. //show title
  7. echo $title;
  8. /*
  9. What I want to do is:
  10. >Get the $title var
  11. >Place it within a table, but instead of having to create a new row every time, can I auto-generate a row?
  12. */
  13. ?>
  14.  
Advertisement
Add Comment
Please, Sign In to add comment