Questo č l'XML... non ne so chissā quanto...
Codice PHP:
// The first step is to activate the XML object 
headlineXML = new XML(); 
/* 
With the XML Object now active you must now load an XML foramtted document. 
Any DTD or XLS formatting will be ignored. 
*/ 
headlineXML.onLoad myLoad
headlineXML.load("eventi.xml"); 
// Before proceeding to far into the program, make sure the XML document has loaded 
// Extract information from the XML file 
function myLoad(ok) { 
    if (
ok == true) { 
        
Publish(this.firstChild); 
    } 


function 
Publish(HeadlineXMLNode) { 
    if (
HeadlineXMLNode.nodeName.toUpperCase() == "BROADCAST") { 
        
content ""
        
story HeadlineXMLNode.firstChild
        while (
story != null) { 
            if (
story.nodeName.toUpperCase() == "STORY") { 
                
lead ""
                
body ""
                
URL ""
                
element story.firstChild
                while (
element != null) { 
                    if (
element.nodeName.toUpperCase() == "LEAD") { 
                        
lead element.firstChild.nodeValue
                    } 
                    if (
element.nodeName.toUpperCase() == "BODY") { 
                        
body element.firstChild.nodeValue
                    } 
                    
element element.nextSibling
                } 
                
content += "<font size='+2' color='#3366cc'>"+lead+"</font>    "+body+"
"


                
txt.htmltext=content
            } 
            
story story.nextSibling
        } 
    } 

In fondo la mia necessitā č ottenere due colonne di dati per gestire una data e un testo.
Esiste qualche tutorial o esempio?