bird_man Wrote:medo teach us how to do xml files so that we may help you ! is it just on a notepad?
Yes, you can use the notepad that built in your computer or another free software called Notepad++ here is the link to download it
http://download.tuxfamily.org/notepadplu...taller.exe
I prefer notepad++ because it shows the open and close tags etc... and made for many programming languages.
to start any xml file, first you have to put this
Code:
<?xml version="1.0" encoding="utf-8"?>
or this one in some cases.
Code:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
then you type the code you want, you can't believe your eyes how easy the xml file. Because you type your own language, for example.
Code:
[color=red]<?[/color][color=blue]xml[/color] [color=red]version[/color]=[color=purple]"1.0"[/color] [color=red]encoding[/color]=[color=purple]"utf-8"[/color][color=red]?>[/color]
[color=blue]<example>[/color]
[color=blue]<to>[/color]bird_man[color=blue]</to>[/color]
[color=blue]<from>[/color]medo[color=blue]</from>[/color]
[color=blue]<msg>[/color]See it so easy! right[color=blue]</msg>[/color]
[color=blue]</example>[/color]
then save it as .xml