dreado Posted March 20, 2006 Share Posted March 20, 2006 I’ve been trying to find out how to make a dynamic page displaying info from a xml feed. The explanations I have found have been somewhat confusing. I was wondering if someone here could help me out with this? Quote Link to comment Share on other sites More sharing options...
ober Posted March 20, 2006 Share Posted March 20, 2006 Did you create the XML file?Have you looked through the PHP manual on XML DOM? Explain "Dynamic" in terms of how you mean it. Do you want a page that updates itself periodically if someone is watching it, or a page that reads from the file automatically? Quote Link to comment Share on other sites More sharing options...
dreado Posted March 21, 2006 Author Share Posted March 21, 2006 Hi oberNo, I didn’t create the XML file, it’s one provided by another site.Not sure if I have seen that manual or not, got a feeling I have but didn’t understand it.What I’d like to achieve is to display the data from the XML feed in a page of my own, so I can style it to look how I want. Quote Link to comment Share on other sites More sharing options...
kenrbnsn Posted March 22, 2006 Share Posted March 22, 2006 Take a look at [a href=\"http://minixml.psychogenic.com\" target=\"_blank\"]http://minixml.psychogenic.com[/a] which is a fairly light weight class for parsing XML files into an array.Ken Quote Link to comment Share on other sites More sharing options...
txmedic03 Posted March 22, 2006 Share Posted March 22, 2006 Are you just trying to parse an RSS feed? Quote Link to comment Share on other sites More sharing options...
dreado Posted March 22, 2006 Author Share Posted March 22, 2006 [!--quoteo(post=357247:date=Mar 22 2006, 11:26 AM:name=txmedic03)--][div class=\'quotetop\']QUOTE(txmedic03 @ Mar 22 2006, 11:26 AM) [snapback]357247[/snapback][/div][div class=\'quotemain\'][!--quotec--]Are you just trying to parse an RSS feed?[/quote]Yeah Quote Link to comment Share on other sites More sharing options...
dreado Posted April 8, 2006 Author Share Posted April 8, 2006 [!--quoteo(post=357174:date=Mar 22 2006, 02:56 AM:name=kenrbnsn)--][div class=\'quotetop\']QUOTE(kenrbnsn @ Mar 22 2006, 02:56 AM) [snapback]357174[/snapback][/div][div class=\'quotemain\'][!--quotec--]Take a look at [a href=\"http://minixml.psychogenic.com\" target=\"_blank\"]http://minixml.psychogenic.com[/a] which is a fairly light weight class for parsing XML files into an array.Ken[/quote]Thanks for the link, but in their code, I can't see where you'd put the url of the feed.Maybe someone can look at the code I initially used and tell me what might be wrong with it (it generates nothing but a blank page).[code]<?phpfunction parseIntoArray( $url ){ $data = file_get_contents( $url ); $xml_parser = xml_parser_create(); xml_parse_into_struct($xml_parser, $data, $vals, $index); xml_parser_free($xml_parser); $params = array(); $level = array(); foreach ($vals as $xml_elem) { if ($xml_elem['type'] == 'open') { if (array_key_exists('attributes',$xml_elem)) { list($level[$xml_elem['level']],$extra) = array_values($xml_elem['attributes']); } else { $level[$xml_elem['level']] = $xml_elem['tag']; } } if ($xml_elem['type'] == 'complete') { $start_level = 1; $php_stmt = '$params'; while($start_level < $xml_elem['level']) { $php_stmt .= '[$level['.$start_level.']]'; $start_level++; } $php_stmt .= '[$xml_elem[\'tag\']] = $xml_elem[\'value\'];'; eval($php_stmt); } } return $params;}function getPlayerData( $url ){ $arrayData = parseIntoArray( $url ); return $arrayData[ "PLAYERDATA" ];}$playerData = getPlayerData( "http://bf1942.gametrack.org/player.php?id=2297153&format=xml" );echo "<pre>";print_r( $playerData );echo "</pre>";?><?php echo $playerData["PLAYER"];?> <br /><?php echo $playerData["GRADE"];?>[/code] Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.