I am new to cakephp and the mvc architecture,i want to create a simple reporting form which allows me to query a table of users to know how many users were created at a specific time frame
sample table below. CREATE TABLE IF NOT EXISTS `authake_users` ( `id` int(10) unsigned NOT NULL auto_increment, `login` varchar(32) NOT NULL, `password` varchar(50) NOT NULL, `email` varchar(128) NOT NULL, `created` datetime default NULL, `updated` datetime default NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=39 ; please can any one show me how to go about this? Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
