insert data into mysql using flash.
Moderator: General Moderators
insert data into mysql using flash.
Hi could somebody point me to an article or tell me how to insert data from a flash input box into a mysql data base. I prefer to use php and XML.
- RobertGonzalez
- Site Administrator
- Posts: 14293
- Joined: Tue Sep 09, 2003 6:04 pm
- Location: Fremont, CA, USA
- RobertGonzalez
- Site Administrator
- Posts: 14293
- Joined: Tue Sep 09, 2003 6:04 pm
- Location: Fremont, CA, USA
this is all i know about making flash talk to php.
Code: Select all
for (i=0;i<1000;i++) {
var theXML:XML = new XML();
theXML.ignoreWhite = true;
theXML.onLoad = function (){
var nodes = this.firstChild.childNodes;
for (i=0;i<nodes.length;i++){
theList.addItem(nodes[i].firstChild.nodeValue),i
}
}
theXML.load("http://localhost/webserver1/development/products2.php")- RobertGonzalez
- Site Administrator
- Posts: 14293
- Joined: Tue Sep 09, 2003 6:04 pm
- Location: Fremont, CA, USA
that is an action script.........thanks for posting a tutorial if you come across one....i've googled it for hours and all i can find is a XML socket connection server solution(i'm trying to build chat for learning purposes)this is the server http://www.huikuri.com/flash/xml...............don't spend too much time on the subject its complex and time consuming ....thnx for your support.