localconnection

Making a local connection between a mysql database and php

I already have the mysql database made, I just need to connect php to mysql locally but I don't know the php commands for that. cheers ...

LocalConnection: communicate between flex 4.1 and flash as2

Hiya. I'm trying to communicate between a flex 4.1 application to a flash action script 2 application using LocalConnection. flash application contains a button called btn01 and the following code: var a:LocalConnection = new LocalConnection(); btn01.onPress = function() { trace("button clicked"); a.send("abcde","test"); } you ca...

AS3: Singleton class vs LocalConnection class

Hi: I have a Main class loading 2 SWF (loader and viewer, also with document classes). They need to share a double buffer with content, of course, filled by loader and showed by viewer I was thinking to use the LocalConnection class but after a suggestion from PatrickS now I'm evaluating the possibility of a Singleton Class. I've never...