Category Archives: Framework

All about framework. Framework is very much essential for agile development. Whatever you are using PHP, AJAX, Dot net or Even CSS, using a framework mean you are more structured for current development as well as expansion.

Taking mysql db backup in a second

Easy way to backup of database(mysql) using CI $this->load->dbutil(); $this->load->helper(‘download’); $this->load->helper(‘file’); $prefs = array( ‘tables’      => array(),  // Array of tables to backup. ‘ignore’      => array(‘ssc_dakhil_exam’),           // List of tables to omit from the backup ‘format’      => ‘zip’,             // gzip, … Continue reading

Posted in Code Igniter, Framework | Tagged , , , , | 1 Comment

YAML Database Format

[NOTE: copy and paste from : http://www.symfony-project.org/jobeet/1_2/Propel/en/03 ] According to the official YAML website, YAML is “is a human friendly data serialization standard for all programming languages” Put another way, YAML is a simple language to describe data (strings, integers, … Continue reading

Posted in Framework, Symfony | Leave a comment