Topic: Oldschool Style vs XML (Page 1 of 1) |
|
---|---|
Maniac (V) Mad Scientist From: Jacks raging bile duct.... |
posted 08-17-2002 05:50
I'm used to plain jane HTML, CSS, and javascripts to create most of the pages I do. I just picked up a book on this XML stuff and from what I've read I've determined that XML allows me to create my own proprietary tags. This is good and all but I can't for the life of me figure out what I would ever need XML for. |
Maniac (V) Mad Scientist From: Belgrade, Serbia |
posted 08-17-2002 06:00
Reading Material: http://www.xml.com/pub/a/98/10/guide0.html |
Maniac (V) Mad Scientist From: Jacks raging bile duct.... |
posted 08-17-2002 06:08
before I begin to read all of that is XML cross browser compliant? |
Maniac (V) Mad Scientist From: 127 Halcyon Road, Marenia, Atlantis |
posted 08-17-2002 07:30
it validates, if I'm not mistaken... |
Maniac (V) Mad Scientist From: Belgrade, Serbia |
posted 08-17-2002 07:31 |
Maniac (V) Mad Scientist From: TipToToe |
posted 08-17-2002 12:59
I use PHP to write XML on the fly (formatting queries for example) for Flash. It's the only way to fly. |
Maniac (V) Mad Scientist with Finglongers From: Cell 53, East Wing |
posted 08-17-2002 14:21
Boudga: XML isn't used for producing web pages (although as maX says XHTML is the application of XML pinciples to HTML) but it has many uses and applications. I'm sketching out an idea for an intro for the GN (for when the redeisng is done and I get some of the others I'm working on out of the way) and it will be title something like 'Lingua Franca: An introduction to XML'. The real power is that it can act as common language between different devices, platforms, applications, etc. - as Weadah says it is very useful for passing information between Flash and a server-side language like PHP. The power of XML feeds means that if you want to share information from your site with other people you don't need give them access to the database you can just pump out the details into a structured file (XML) and then other people can access that file and extract the information from it. |
Maniac (V) Mad Scientist From: 127 Halcyon Road, Marenia, Atlantis |
posted 08-17-2002 17:50
"It's the only way to fly."- hehehehehe |
Paranoid (IV) Inmate From: North Coast of America |
posted 08-17-2002 18:28
I didn't quite get it either until I read this: http://www.alistapart.com/stories/usingxml/ |
Paranoid (IV) Inmate From: Dallas, TX |
posted 08-18-2002 04:36
You can create web pages with XML (straight xml), but Mozilla can only render it with an attached xml-stylesheet done in CSS, while IE6 can only render it if you use XSL. |
Paranoid (IV) Inmate From: Greenville, SC, USA |
posted 08-18-2002 05:38
xml (or so I've read) will be the future. The strength of xml allowing you to create your own tags makes searching relevancy more powerful and allowing for more specific and thourough searches. This will be big for archiving and storage and will also be more huge for wireless devices....I'm at work now, but I have my textbooks at home and elaborate a little more. |
Bipolar (III) Inmate From: Phoenix |
posted 09-04-2002 06:46
XML grows on you (at least it has me). I find myself using it more and more. I'm a VB developer. There has always been a missing link for passing variables/information/data from a VB Client to the server. With XML, I can generate complex data structures and send them on there way! |
Bipolar (III) Inmate From: London, UK |
posted 09-09-2002 17:03
As far as I can see, a data island is just a section of xml within a (web) page - like having a script section, or a style section, instead of linking to a seperate file. |