Monday, January 18, 2016

How to install Symfony

1) run following command php -r "file_put_contents('symfony', file_get_contents('https://symfony.com/installer'));" 2) run following command symfony new my_project 2.8 3) see picture below 4) Run on web In php ini open this extension extension=php_intl.dll Note: if you not installed Php accelerator, please install by following steps to show you PHP configuration...
Read More »

Tuesday, January 5, 2016

Cakephp validate

we can do validation with Model in cakephp by  array variable  i.e  $validate. here you can see working validation example which you have to write in model public $validate = array(             'username' => array(                 'notBlank' => array(                     'rule' => array('notBlank'),            ...
Read More »