Hello, Im trying to write into a text file with the PHP method but instead of using data form a text field, using one from a Combobox
what should i do after this part?
submit.addEventListener("mouseDown",sendData);
function sendData(evt:Event){
//Using PHP
var myData:URLRequest = new URLRequest("save.php")
//Using CFM
//var myData:URLRequest = new URLRequest("save.cfm")
myData.method = URLRequestMethod.POST
var variables:URLVariables = new URLVariables()
variables.Text = Combobox.selectedItem.label
it doesnt seem to be retrieving the info to send it to the PHP