Awesome works great thanks. Now I need to import the questions into a listbox in flash. Heres my code for flash.
rQ = new LoadVars();
rQ.onLoad = function(success) {
for(i=0; i <= 5; i++){
_root.box_lb.addItem(rQ.questions[i]);
}
_root.box_lb.height = 600;
_root.box_lb.width = 700;
};
rQ.sendAndLoad("mysql.php", rQ, "POST");
The only thing I am seeing in the listbox though is a , for each row. I don't think my handler 'rQ.questions' is correct. Anyone have any ideas ?