Skip to content

Tag Archives: iso 8859

Why doesnt this script work? It uses php in an XML file to display RSS feeds?

Hi, i made this script, its supposed to show rss feeds in xml. I saved the file as .php so that the php statements are shown. But why don’t they show? They show in normal file so why not in this? It should create then show the value "hello" in the text. <?xml version="1.0" encoding="ISO-8859-1" [...]

Looking for an XML parser to process XML feeds, recommendations?

My website uses XML feeds to inform some specific link partners about where our articles are, and some other basic information. These partners also provide us with feeds of their articles, so we can link together when we have a matching topic. My programmer is able to process feeds in rss 2.0 format, but can’t [...]

How to create a style sheet for xml, rss feeds?

This is a small RSS feed that has 2 items in it. Is it possible to create a stylesheet for rss feeds, so for example make all descriptions in the feeds be underlined? If so how, or could you give me an example please? Thanks <?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?> <rss version=\"2.0\"> <channel> <item> <description>Tony Blair [...]

How can I get the display of following XML file on the Internet Explorer?

I have two simple codes. One is XML and the other one is XSL. I am trying to view the display of XML file on the internet explorer, but all I got was the codes instead of the actual output. The followings are my XML and XSL file respectively. 1) ProductListing.xml Product<?xml version="1.0" encoding="iso-8859-1"?> <catalog> [...]

a c program which printing the tag value of a xml file using expat parser?

like for a example xml program <?xml version="1.0" encoding="ISO-8859-1"?> <note> <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don’t forget me this weekend!</body> </note> out put should be : Tove Jani Reminder Don’t forget me this weekend! i want the c program for that in linux environments