|
|
| Author |
Message |
Jukas
Toomuchtimeonhands

Joined: 19 Mar 2003 Posts: 896
|
Posted: 10/25/05 - 13:04 Post subject: XML ?
|
|
|
Does XML not parse regular HTML tags?
I was just trying to update some text on a webmail login page written in XML and needed to change a link. The link is currently listed as a variable but I can't find where the variable is stored, so I figured I'd just do it as a quick and dirty HTML fix, but it parses it just as text.
|
|
|
Back to top
|
|
|
|
 |
Occulis
RealPoor Jedi

Joined: 11 Oct 2002 Posts: 13293
Location: Moral Relativity Central
|
Posted: 10/25/05 - 14:59 Post subject:
|
|
|
XML is a file format, not a program. Same for HTML. They are just text files. Not sure what software you're using, but it is the software which decides how to parse those files. XML is just a data storage format.
Hope this is of some help
|
|
|
Back to top
|
|
|
|
 |
Kurel
RealPoor Sensei

Joined: 11 Oct 2002 Posts: 1877
Location: Cali
|
Posted: 10/26/05 - 07:02 Post subject:
|
|
|
|
XML is just a way to store data, in order to view that data you need to parse it using some sort of script. Usually people write XML parsers in PHP, but I've seen them done with Java as well.
|
|
|
Back to top
|
|
|
|
 |
Jukas
Toomuchtimeonhands

Joined: 19 Mar 2003 Posts: 896
|
Posted: 10/26/05 - 11:34 Post subject:
|
|
|
| Occulis wrote: | XML is a file format, not a program. Same for HTML. They are just text files. Not sure what software you're using, but it is the software which decides how to parse those files. XML is just a data storage format.
Hope this is of some help |
Actually it did. I found the HTML file where it called to the variable in the XML file and just edited it there.
|
|
|
Back to top
|
|
|
|
 |
|
|