php - This XML file does not appear to have any style information associated with it -
trying work on website using dreamweaver , php development.
on live site, found error:
this xml file not appear have style information associated it. document tree shown below. <rss xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0"> <channel> <title> abcded </title> <cf:treatas xmlns:cf="http://www.microsoft.com/schemas/rss/core/2005">list</cf:treatas> <link>http://events.sjsu.edu/default.aspx</link> <description>rss feed abcd events calendar</description> </channel> </rss>
actually, are echoing xml file php page ?
$xml = simplexml_load_file('url'); foreach ($xml->channel->channel $value){ $var1 = $value->link; $var2 = $value->description; } echo $var1."<br>".$var2;
display in php.
hope works!
Comments
Post a Comment