Jump to content

xmlxpert

Members
  • Posts

    32
  • Joined

  • Last visited

Everything posted by xmlxpert

  1. xmlxpert

    XML Storage

    Hi, Is XML file a good way in storing data than any other databases? When will you use XML or RDBM databases anyways? I'm a newbie in ASP and would like to integrate XML with it than using MSACCESS as data storage. Is this a good choice? Or should I simple use both?
  2. xmlxpert

    Gradient color

    yes i would like that, thanks
  3. xmlxpert

    Gradient color

    Hi, Is there anyway that I could use a gradient color from using this code?<code>div.container{width:100%;margin:0px;border:1px solid #CCCCCC; /*this isnt a gradient color, how do I replace this*/line-height:120%;}</code>
  4. Hi, Oh I see now, thanks robot, I'll do the xsl then.
  5. why not stick on to what you already known such as PHP, mySQL, Apache and XML for beginners . Yes a a good writingwill be "XML and Database" but dont miss on what you already have known. Me im new with XML either but hey I dont miss those scripts I've known. So in your writing add all those scripts/databases and a twist with XML.thus "Script Languages and Databases" sounds good to you? cheers,
  6. Hi, actually it works when you reference it in the head of an html doc but it is also possible to reference a css file within an xml file from what the w3c have said so. anyways Thanks on replying DarkElf, thanks
  7. xmlxpert

    cant see css file

    hi, Im a newbie and wondering why the xml file cant see the css file? I actually got this code on w3schools tutorial about xml-css but seems like it wont work on me. I got 3 files ;default.htm(embeded the xml file), cd_catalog.xml and cd_catalog.cssThe output was the content of the cd_catalog.xml with the css file in which I made reference with but same old same the code on cd_catalog.css wasnt implemented.1.) default.htm <html><body><xml id="cdcat" src="cd_catalog.xml"></xml><table border="1" datasrc="#cdcat"><tr><td><span datafld="ARTIST"></span></td><td><span datafld="TITLE"></span></td></tr></table></body></html> 2.) cd_catalog.xml <?xml version="1.0" encoding="ISO-8859-1"?><!-- Edited with XML Spy v4.2 --><?xml-stylesheet type="text/css" href="cd_catalog.css"?><CATALOG> <CD> <TITLE>Empire Burlesque</TITLE> <ARTIST>Bob Dylan</ARTIST> <COUNTRY>USA</COUNTRY> <COMPANY>Columbia</COMPANY> <PRICE>10.90</PRICE> <YEAR>1985</YEAR> </CD> <CD> <TITLE>Hide your heart</TITLE> <ARTIST>Bonnie Tyler</ARTIST> <COUNTRY>UK</COUNTRY> <COMPANY>CBS Records</COMPANY> <PRICE>9.90</PRICE> <YEAR>1988</YEAR> </CD></CATALOG> 3.) cd_catalog.css CATALOG{background-color: #ffffff;width: 100%;}CD{display: block;margin-bottom: 30pt;margin-left: 0;}TITLE{color: #FF0000;font-size: 20pt;}ARTIST{color: #0000FF;font-size: 20pt;}country, price, year, company{display: block;color: #000000;margin-left: 20pt;}
×
×
  • Create New...