Working with HABTM Form Data in CakePHP Posted by Mr PHP on October 4, 2008 Warning: This guide was written for CakePHP v1.x. If you notice any changes required in newer versions of CakePHP please leave a comment below. CREATE TABLE `posts` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL, `body` text NOT NULL, PRIMARY KEY (`id`) ); CREATE TABLE `tags` ( `id` int(11) NOT NULL a