Kritical_V Posted May 25, 2012 Share Posted May 25, 2012 Okay so I am really new to php and xml and I'm a little over my head, What I am looking to do seems simple enough but I cannot figure it out.. So I put together this quick snippet to create a url to a xml file for different users <?php $stream = "ipllol"; // ADD A USERNAME FROM JUSTIN.TV HERE $user_data = "http://api.justin.tv/api/channel/show/" . $stream . ".xml"; ?> This creates the following url: http://api.justin.tv/api/channel/show/ipllol.xml Now I want to output the data off that xml document into my page, I also want to input each variable separately for styling purposes such as: <?php some code that displays the subcategory from the xml document ?> and so on. Thanks Link to comment https://forums.phpfreaks.com/topic/263141-php-xml-help-required/ Share on other sites More sharing options...
Barand Posted May 25, 2012 Share Posted May 25, 2012 have a look at http://uk3.php.net/manual/en/book.simplexml.php Link to comment https://forums.phpfreaks.com/topic/263141-php-xml-help-required/#findComment-1348662 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.