-
Recent Posts
Recent Comments
Archives
Categories
Meta
Monthly Archives: December 2008
All projects backup in a Single PC (including Versioning)
It’s really nighhtmare to maintain all projects backup manually in a single computer when a project is developed by different programmer(s). But it’s really easy if we assign the manual task to any sub versioning sofware like Tortois SVN. Prerequiresites: … Continue reading
Posted in Development
Tagged all project backup, backup in lan, backup server, company data house, create reposity, svn
2 Comments
Create an SVN repository for your project
Subversion have a huge list of features what you can get from here. But i have not enough time to read the big list. So in short, subversion is a system which helps developer to backup and recovery(extreme feature) their … Continue reading
How simple to create an excel file from database using CI
How simple to create an excel file from database using CI (don’t care about table(s) or data) function export_excel() { $query = $this->db ->select(‘*’) ->from(‘customer’) ->get(); to_excel($query , ‘export_master’); // outputs export_master.xls } system/helper/common_helper.php or application/helper/common_helper.php field_data(); if ($query->num_rows() == … Continue reading
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
lets try symfony
Symfony is an excellent framework which make programmer’s life more easier. fully structured, easy to build, debug and extend application. First donwload symfony and extract into your web root. Database: Some tools allow you to build a database graphically (for … Continue reading
Posted in Symfony
Leave a comment