Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $url = 'clientmsg.xml';
- $xml = simplexml_load_file($url);
- //get stuff now
- $title=$xml->header[0]->title;
- //show title
- echo $title;
- /*
- What I want to do is:
- >Get the $title var
- >Place it within a table, but instead of having to create a new row every time, can I auto-generate a row?
- */
- ?>
Advertisement
Add Comment
Please, Sign In to add comment