-
Recent Posts
Recent Comments
Archives
Categories
Meta
Category Archives: Framework
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 backup script, ci database backup, database backup, mysql database backup, mysql db backup
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