Soy nuevo en el sitio y estoy haciendo un sistema de envio de sms con php, flash y xml como los servicios de publimensajes.
tengo un archivo flash que contiene el siguiente action scritp
Código PHP:
// Action script...
// [onClipEvent of sprite 3 in frame 1]
onClipEvent (load)
{
n = 1;
testo = "loading XML data...";
}
// [onClipEvent of sprite 3 in frame 1]
onClipEvent (enterFrame)
{
if (n <= testo.length)
{
txtComment = txtComment + substring(1)n, testo, ;
++n;
}
else
{
stop ();
} // end else if
}
// [Action in Frame 1]
function loadNews()
{
function parseIt()
{
lista = [];
lista = this.childNodes;
nextItem(n);
} // End of the function
newsXml = new XML();
newsXML.load("sms.xml?nocache=" + getTimer());
newsXml.onLoad = parseIt;
newsXml.ignoreWhite = true;
n = -1;
timer = 20;
} // End of the function
function nextItem(arrayN)
{
name = lista[arrayN].attributes.name;
output = name;
} // End of the function
function changeNews(txt)
{
newsContent.txtComment = "";
newsContent.testo = txt;
newsContent.n = 1;
} // End of the function
System.useCodepage = true;
this.onEnterFrame = function ()
{
--timer;
timerSec = Math.floor(timer / 10);
timerTxt = "timer: " + timersec;
if (timerSec <= 0)
{
timer = 200;
if (n + 1 < lista.length)
{
++n;
}
else
{
n = 0;
loadNews();
} // end else if
nextItem(n);
changeNews(output);
} // end if
};
loadNews();
Código PHP:
<news name="saludos a la gente de bandeando" /><news name="Queremos ver al Recodo en mas programas" />
Entonces mi pregunta seria como puedo crear el archivo php para que escriba en el archivo xml?
espero que me puedan ayudar ya que pues mire este sistema en una pagina y pues se me hizo interesante aplicarlo en mi sitio web.
Gracias por su ayuda y pues soy nuevo por aqui estare aportando mis conocimientos.
ivan Jauregui