Posts Tagged: Cake php interview questions
-
May 20, 2010
Comments OffA easy captcha component implentation into cakephp.
First save the code below into a file called captcha.php and put it in your controller components folder Then very important create a folder called “fonts” in your files which is located in webroot/files/ copy the fonts you want to use inside that folder you can add as many fonts as you like and use...
-
May 20, 2010
Comments OffCake php interview questions and answers
What is meant by MVC? model view controller, it is a software architecture, used to isolates business logic from presentation logic. cakephp is based on mvc pattern. What are 3 important parts of MVC? The Model represents the application data The View renders a presentation of model data The Controller handles and routes requests made...