Wednesday, May 31 2017
In this post explains, how to implement CRUD operations in CakepPHP 2.x version. we are using Cakephp 2.9.3v. First download the cakephp 2.9.3v source files from Github here. Its useful for a beginner to start cakephp.
We aren’t implement jquery validations and datatable too. We use only default cakephp libraries to validate the user’s input with bootstrap 3. We use most of form fields and cover all possible cases to validate it.
See our demo video on Youtube:
Friday, May 05 2017
After long time we have posted article about installing theme of AdminLTE for backend in Yii2 Framework. Adminlte theme integration in Yii2 useful for beginners.
If you don’t have composer in your machine, download composer from Composer-Setup.exe. for Windows users.
For linux or Mac osx users please do following commands
curl -sS https://getcomposer.org/installer | php mv composer.phar /usr/local/bin/composer
Thursday, December 15 2016
In this post explain about laravel installation steps. Now we see the laravel versions and their prerequisites.
Version 5.3 | Version 5.2, 5.1, 5.0 | Version 4.2 |
|
|
|
See our demo video on Youtube:
Thursday, May 05 2016
In this post we have explained about how to create multiple database connection in codeigniter. Please do the following changes in your files.
Config.php:
Change the below following things in your config.php
$active_group = 'default'; $active_record = TRUE;
Friday, April 08 2016
In this article we have explained about how to create custom Helper in Codeigniter. Helper is a group of functions but it is not a class.
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); if ( ! function_exists('sample_method')) { function sample_method($var = '') { return $var; } }
Sunday, April 03 2016
To avoid the illegal words in your content as you are using codeigniter provide word_censor functions.Here we are brief explain about this function. First you mention what are the words are you going to skip from the content. Those values are maintain your table.
Table:
CREATE TABLE `test`.`get_illegal_words` (`word_id` INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, `illegal_word` VARCHAR(255) NOT NULL) ENGINE = InnoDB;