I am required to create my own schemas in XML. Kindly suggest if I will be able to do this at home or if I need any software?
-
- Read about how logo jewelry can be used to reward and motivate employees.
-
Recent Posts
- The Methods That The IContact Service Could Help Assist In Website Promotion
- 3D Computer Monitors Rock! – Take Computer Gaming To Another Level
- Using IContact To Optimize The Effectiveness Of Your Email Marketing
- The Reasons Behind Why You Should Use An IContact Coupon Code
- Software Programmers Or Software Developers Are Required To Develop Applications For Various Purposes.
- Several Quick Tricks For Boosting Your Internet Site Web Optimization
- Small businesses now have affordable access to sophisticated online and mobile telephone systems at affordable prices. Check out the big daddy of the Virtual PBX category with this RingCentral Review.
Blogroll
2 Comments
Notepad will work fine! Any further help, I can help, just send me an email. Im pretty good with XML, here’s a simple thing I did for someone else on YAHOO ANSWERS about XML.
—————-
Absolutely NOT. It’s easy. On a scale of 1-10, 10 being the easiest, I rate it 10! I learned it in less than a day, of only practicing. I learned XML from W3Schools.com. XSLT is harder.
XML:
Make up your own tags.
Start up notepad or something like that.
now you always need to start an xml file with the following code:
<?xml version="1.0" encoding="ISO-8859-1"?>
Now you can start writing. For organization, skip a line after the: <?xml version="1.0" encoding="ISO-8859-1"?>
Start your tags. Unlike html, in xml, you can write your own tags. Instead of having the <html> tag, I am going to use <xml>, as the main tag. But you can use anything you’d like.
<?xml version="1.0" encoding="ISO-8859-1"?>
<xml>
</xml>
Now we will write our body. The xml tags are like the html tags in html, just the whole cover up. We need new tags for our main body. I will use the following as a body tag "body".
<?xml version="1.0" encoding="ISO-8859-1"?>
<xml>
<body>
</body>
<body>
</body>
</xml>
We will write two different body things for this example. Now we have a body, which we will add a title. So our title tag will be called "title". And we’ll add a blog, so our blog tag will be "blog".
<?xml version="1.0" encoding="ISO-8859-1"?>
<xml>
<body>
<title></title>
<blog></blog>
</body>
<body>
<title></title>
<blog></blog>
</body>
</xml>
Now we can start adding text to the title and blog. Add the text in between the >< of both tag sets. I made an example.
<?xml version="1.0" encoding="ISO-8859-1"?>
<xml>
<body>
<title>This is My First</title>
<blog>This is the blog part!</blog>
</body>
<body>
<title>I made XML LIVE!</title>
<blog>XML NOW LIVES IN ME!</blog>
</body>
</xml>
For starters, you can use CSS to view the xml file.
But now save the file as: myxml.xml, MAKE SURE YOU ADD THE .xml part.
XML is just the language, you can do it on your notepad program if you want to.
I suggest starting by typing C:/Del_tre and saving it as a .bat file, no don’t do that it will delete everything, how about just typing out some XML code instead.
Post a Comment