Re: Newbie looking for examples of db management PHP pages

2009-09-14 Thread Rick
Here are two ways to do it: http://book.cakephp.org/view/113/Code-Generation-with-Bake http://book.cakephp.org/view/105/Scaffolding Rick On Sep 13, 2:33 pm, ProBowlUK wrote: > Can anyone help with example pages (or pointers) for PHP pages that > manage (Insert, Delete, Update) database tab

Newbie looking for examples of db management PHP pages

2009-09-14 Thread ProBowlUK
Can anyone help with example pages (or pointers) for PHP pages that manage (Insert, Delete, Update) database tables ? db = list of URLs related to Tenpin Bowling schema = http://www.ProBowlUK.co.uk/files/ERD_00.pdf example data = http://www.ProBowlUK.co.uk/files/URLs.pdf cheers . --~

Re: Looking for examples

2006-05-24 Thread AD7six
Hey I just checked again, the wiki search page seems to be behaving a little better. Some results relavent to this thread http://www.cakephp.org/search/index/mvc http://www.cakephp.org/search/index/authentication http://www.cakephp.org/search/index/webservices http://www.cakephp.org/search/index/

Re: Looking for examples

2006-05-24 Thread John Zimmerman [gmail]
You can search the wiki using the following in GoogleSearch Terms site:wiki.cakephp.orgReplace Search Terms above with whatever you are looking for. You can expand on your authentication system by using cake's built in ACL and ACO functionality.I have not completely figured it out yet, but I am cur

Re: Looking for examples

2006-05-24 Thread AD7six
Hi Peter, A gentle hint: search before asking. >I guess I will have to get used to the required 1-1-1-1 mapping between controller, model, view and database table. That's not really true, the bit relavent to what you are asking is that you can have any number (including 0) of Models used by a co

Re: Looking for examples

2006-05-24 Thread Peter
Gentlepeople, Thanks for your prompt and to the point replies. I will look into the info you provided. I also found the rdBloggery example which seems relevant for what I am trying to do. I guess I will have to get used to the required 1-1-1-1 mapping between controller, model, view and databas

Re: Looking for examples

2006-05-24 Thread John Zimmerman [gmail]
This should get you started...http://manual.cakephp.org/chapter/19On 5/24/06, Grant Cox < [EMAIL PROTECTED]> wrote:Isn't there going to be some kind of User model behind that page?  If not, how do you authenticate their login?You would want to do this the same as any other function, have a Usermode

Re: Looking for examples

2006-05-24 Thread Grant Cox
Isn't there going to be some kind of User model behind that page? If not, how do you authenticate their login? You would want to do this the same as any other function, have a User model with a username and password, a UsersController with a login function, and a users/login.thtml View. In the

Looking for examples

2006-05-23 Thread Peter
Hello, I am completely new to CakePHP and somewhat new to web development in general. I am trying to figure out what the best setup is for web pages that do not fall within the typical Cake concepts. Any examples or somewhat extended tutorials going beyond the one table CRUD pages would be great