Hi All,
I am looking for an example of Flash talking to a MySQL database... Does anyone know of any examples or tutorials?
Hi All,
I am looking for an example of Flash talking to a MySQL database... Does anyone know of any examples or tutorials?
There are many. Anything in particular you are looking for? I have several that talk to a db for a high score table. It all depends on what you need it to do.
{CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
Follow Me on Twitter: @InkingHubris
PHP Code:$result = mysql_query("SELECT finger FROM hand WHERE id=3");
echo $result;
Hi Blizzard,
Well it's going to be a database that displays Cocktails, based on the Glass, Ingerident... And I guess I'd have a search funstion in there too...
Thanks!
Look Here
This isn't exactly SQL, but it is a bit easier to implement and update. I will try to find an example more to your specifics, but other than high scores, SQL isn't widely used in Flash. Not that it can't there are usually just other ways to do it that are a tad more simple.
{CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
Follow Me on Twitter: @InkingHubris
PHP Code:$result = mysql_query("SELECT finger FROM hand WHERE id=3");
echo $result;
Ahh.. phpObject.. that's what I was looking for!
here you go
{CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
Follow Me on Twitter: @InkingHubris
PHP Code:$result = mysql_query("SELECT finger FROM hand WHERE id=3");
echo $result;
Bookmarks