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.
You must be logged in to post a comment.
Copyright © 2012 Peak Studios All rights reserved |
Become a fan
September 17th, 2010 at 6:23 pm
Is there a way to enlarge the Video stage in my browser?
October 3rd, 2010 at 10:45 pm
Use Ctrl with the plus symbol and zoom in if you really need to. We have zoomed into the code for you in the video and the Flash PHP MySQL plugin makes the default coed for you.