I am using the blitxblog (http://www.kirupa.com/forum/showthread.php?t=190375) as my admin section and then wanting to use amfphp to connect to the database and import the db content into dynamic textbox in a flash movie. I dont know if this is the best way and I am open to any suggestions on that would be easier and quicker to build my CMS cos I know very little PHP or AS.) anyway what I was really wanting to know is if some one would help me with the php part cos as you would know if you were familure with amfphp I need a .php file in the …/amfphp/services/ directory which is the file that accesses the db as well as interacts with the flash file. And I really have no idea on how to do it. here is how my DB is set up:
-- Database: `arctosde_blixtBlog`
--
-- --------------------------------------------------------
--
-- Table structure for table `blog`
--
CREATE TABLE `blog` (
`id` int(11) NOT NULL auto_increment,
`creator` varchar(100) NOT NULL default '',
`title` varchar(255) NOT NULL default '',
`cat` varchar(100) NOT NULL default '',
`link` varchar(255) NOT NULL default '',
`description` text NOT NULL,
`text` text NOT NULL,
`date` datetime NOT NULL default '0000-00-00 00:00:00',
`hidden` tinyint(4) default NULL,
KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 PACK_KEYS=0 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `blog`
thanx