Hello everyone,
I have finally found out how I want to do my website. I have a little experience so this is how I plan to have my website done. Basically, I have two HTML (or whatever type, as long as it can do what I want, and on a apache server with PHP.. no ASP) files that shall read off a XML file. Basically, I want the XML file to look like this (Note the order it's in)
And it shall be formatted into a website like this [Note the Bold, Font size, and order of the news] [the date should be -1 size font.. didn't show up properly]
and so on. The first HTML website should do the exalt same, with white background and black text. Font doesn't need to be defined. Second one should read off the same website, same size and bold with the font, only background text should be black, font being white.
Basically, i need help with thise code. I have the XML done, need to get the HTML or similar done...
Thanks,
lieb39
I have finally found out how I want to do my website. I have a little experience so this is how I plan to have my website done. Basically, I have two HTML (or whatever type, as long as it can do what I want, and on a apache server with PHP.. no ASP) files that shall read off a XML file. Basically, I want the XML file to look like this (Note the order it's in)
Code:
<?xml version="1.0" encoding="iso-8859-1"?>
<news>
<N01>
<date>Jan.1.2004.</date>
<text>Happy new year.. blah blah</text>
</N01>
<N02>
<date>Jan.18.2004.</date>
<text>Added some section... blah blah</text>
</N02>
<N03>
<date>Jan.21.2004.</date>
<text>Meh, no news today. sorry mate...</text>
</N03>
</news>
And it shall be formatted into a website like this [Note the Bold, Font size, and order of the news] [the date should be -1 size font.. didn't show up properly]
Jan.21.2004
Meh, no news today. sorry mate...
Jan.18.2004
Added some section... blah blah
Jan.1.2004
Happy new year.. blah blah
and so on. The first HTML website should do the exalt same, with white background and black text. Font doesn't need to be defined. Second one should read off the same website, same size and bold with the font, only background text should be black, font being white.
Basically, i need help with thise code. I have the XML done, need to get the HTML or similar done...
Thanks,
lieb39