Peak Studios – Assert your web presence!

Hello World using Flash PHP MySQL

Get Adobe Flash player

In this Video Tutorial Peak Studios teaches you how to use the SELECT statement with the ActionScript 3 Flash PHP MySQL.

Use the code below to create a table in your MySQL Database:

CREATE TABLE `hello_world` (
`id` int(11) unsigned NOT NULL auto_increment,
`message` varchar(30) default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;

INSERT INTO `hello_world` (`id`, `message`) VALUES
(1, 'Hello World One'),
(2, 'Hello World Two');

No other code is provided for this tutorial since the Flash PHP MySQL extension creates it for you.

Leave a Reply