CakePHP Tutorial for Beginners

CakePHP is an open source web application framework. It follows the Model-View-Controller (MVC) approach and written in PHP. CakePHP makes building web applications simpler, faster and require less code.

This CakePHP tutorial will drive you to the right direction for getting started with CakePHP framework and provide basic guide of CakePHP application development. Our step by step cakePHP tutorial helps beginners for install and configures the CakePHP application. You can learn CakePHP from scratch with our easy tutorial. Also we will develop a sample CakePHP project and it will help you for better understanding the whole process.

Application flow of the CakePHP are given below:

cakephp-application-flow

Download CakePHP

At first you need to download the stable release of CakePHP from Github – CakePHP Releases

Basic Configuration

  • Step1: Extract zip file and change folder name with your desire project name. For example cakephp/.
  • Step2: Move the cakephp/ folder to the localhost server. Your directory setup looks like the following.
    • /cakephp
      • /app
      • /lib
      • /plugins
      • /vendors
      • .htaccess
      • index.php
      • README
  • Step3: Create database at the phpMyAdmin. For example cakephp_db.
  • Step4: Open the app/Config/core.php file and make the following changes.
    •  Change the value of Security.salt at Line no.225.
      • Before changes:
        Configure::write('Security.salt''DYhG93b0qyJfIxfs2guVoUubWwvniR2G0FgaC9mi');
      • After changes:
        Configure::write('Security.salt''codexworld');
    •  Change the value of Security.cipherSeed at Line no.230.
      • Before changes:
        Configure::write('Security.cipherSeed''76859309657453542496749683645');
      • After changes:
        Configure::write('Security.cipherSeed''123456');
  • Step5: Rename database.php.default file to database.php at the app/Config/ directory.
  • Step6: Open the “app/Config/database.php” file and make the following changes.
    •  Go to the line no.67 and replace the values of host, login, password, database_name with your database host, database username, database password and database name.
      • Before changes:
        public $default = array(
            
        'datasource' => 'Database/Mysql',
            
        'persistent' => false,
            
        'host' => 'localhost',
            
        'login' => 'user',
            
        'password' => 'password',
            
        'database' => 'database_name',
            
        'prefix' => '',
            
        //'encoding' => 'utf8',
        );
      • After changes:
        public $default = array(
            
        'datasource' => 'Database/Mysql',
            
        'persistent' => false,
            
        'host' => 'localhost',
            
        'login' => 'root',
            
        'password' => '',
            
        'database' => 'cakephp_db',
            
        'prefix' => '',
            
        //'encoding' => 'utf8',
        );
  • Step7: Run the project URL(http://localhost/cakephp/) at the browser.
    screencapture-cakephp-configuration

CakePHP Naming Conventions

  • Controller Conventions – Controller class names are plural, CamelCased and end in Controller.(PostsController, LatestPostsController)
  • Model Conventions – Model class names are singular and CamelCased.(Post, LatestPost)
  • Database Conventions – Table names corresponding to CakePHP models are plural and underscored. (posts, latest_posts)
  • View Conventions – View template files are named after the controller functions they displayed, in an underscored form. The postDetails() function of PostController class will look for a view template in app/View/Post/post_details.ctp. The basic pattern is app/View/Controller/underscored_function_name.ctp

Sample Project

In this sample project we will create a products table at the cakephp_db database. And we will insert some data manually at this table. We will fetch and display products in our sample CakePHP project.

Table Creation & Data Insert: Following SQL is used for products table creation.

CREATE TABLE `products` (
 `id` int(11) NOT NULL AUTO_INCREMENT,
 `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
 `description` text COLLATE utf8_unicode_ci NOT NULL,
 `price` float(10,2) NOT NULL,
 `created` datetime NOT NULL,
 `modified` datetime NOT NULL,
 `status` tinyint(1) NOT NULL DEFAULT '1',
 PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci

Once table creation is completed, insert some demo product data into this table.

Controller: Create a products controller with ProductsController class into the app/Controller/ directory. Controller file and class name should be ProductsController.

<?php
class ProductsController extends AppController {
    public function 
index() {
        
//fetch products resultset from databse
        
$products $this->Product->find('all',array('fields'=>array('Product.id','Product.title','Product.description','Product.price','Product.created','Product.status'),'conditions'=>array('Product.status'=>1)));
        
//set products data and pass to the view 
        
$this->set('products',$products);
    }
}

View: Create view for display products in app/View/ directory. The controller class name is ProductsController and method is index. For creating the index view, we need to Products/ directory and a index.ctp file. So, the complete path of the view file (index.ctp) would be app/View/Products/index.ctp.

<ul>
<?php foreach($products as $row): ?>
    <li>
        <h1><?php echo $row['Product']['title']; ?></h1>
        <h6>Price: <?php echo $row['Product']['price']; ?></h6>
        <p><?php echo $row['Product']['description']; ?></p>
    </li>
<?php endforeach; ?>
</ul>

Model: Model creation is not required until you need validation or associations.

Routes: Open the app/Config/routes.php file and set the default controller and action. Go to the line no.27 and change controller name from "pages" to "products" and action name from "display" to "index". If you want to load the different view for this action, you need to pass the view file name after the action element.

Router::connect('/', array('controller' => 'products''action' => 'index'));

Testing: Run the base URL at the browser, products list would displayed.

screencapture-cakephp-display-data

 Our next post will explain about layout, database and advanced label of CakePHP. Please follow CodexWorld for notify about the next post.

Do you want to get implementation help, or enhance the functionality of this script? Click here to Submit Service Request

43 Comments

  1. RIya Said...
  2. Devendra Singh Raghav Said...
  3. Om Said...
  4. Vijay Said...
  5. Divya Chaubey Said...
  6. Kamaljeet Kaur Said...
  7. Dhaval Said...
  8. Ambili R Said...
  9. Khetesh Said...
  10. Yasar Rana Said...
  11. Sanjay Said...
  12. Uday Bhanu Said...
  13. Ankit Prajapati Said...
  14. Kishor Said...
  15. Neel Said...
  16. Arvind Sharma Said...
  17. Kanaiya Said...
  18. Chintan Singh Said...
  19. Mandeep Said...
  20. Engr Atif Said...
  21. Anonymous Said...
  22. Zennie Said...
  23. Davender Soni Said...
  24. JCS Said...
  25. Kulwant Singh Said...
  26. Megha Agrawal Said...
  27. Raghul Said...
  28. Vivek Mishra Said...
    • CodexWorld Said...
  29. Pavani Said...
  30. Praveen Said...
  31. Jyorji Said...
  32. Thamizharasan Said...
  33. Manag Rai Said...
  34. Rajnish Said...
  35. Ramesh Said...
  36. Saumya Said...
  37. Anil Said...
  38. Rahul Sawriya Said...
  39. Rajeev Vishwakarma Said...
  40. Manish Said...

Leave a reply

keyboard_double_arrow_up