On 10 Feb 2011, at 17:30, "[email protected]" <[email protected]> wrote:
> Hi All, > How u All Doinnn...?! > > Can anyone teach me how to setup views,... so when page is > accessed ... it will set field views="increment numbers" like Video > views=906, Group views=489, etc.. like how many time page has been > accessed. You won't be doing any counts in the view, rather updating the count when the action is called and passing that value to the view. All you'll need to do is to get a count value from your table and then resave it after you have added 1. You may also want to do this as an ajax call in JavaScript when you have played say half of the video as then it won't be affected if bots hit the page or people refresh loads > Thanks > chris > > -- > Our newest site for the community: CakePHP Video Tutorials > http://tv.cakephp.org > Check out the new CakePHP Questions site http://ask.cakephp.org and help > others with their CakePHP related questions. > > > To unsubscribe from this group, send email to > [email protected] For more options, visit this group at > http://groups.google.com/group/cake-php > -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php
