Skip to main content

Posts

Showing posts with the label Yii Developer India

Custom export into excel in Yii Framework

Hello Friend, In one my project  developed in yii . I was struggling to export the cgridview data into excel. I searched many plugin and read the tutorial. But not get proper solution specially with relational data from one or many models (database tables). I try eexcelview, toexcel etc. yii plugin but it was really slow specially on large data fetch and also not getting proper excel format. After spending some time, i planed to write my own custom export in excel code in  yii framework . 1. In model search function define session global variable and store active search data (set pagination false so you will get all the record without paging) public function search() { $criteria=new CDbCriteria; $criteria->compare('vendor_debit_id',$this->vendor_debit_id); $criteria->compare('hotel_id',$this->hotel_id); $criteria->compare('supplier_name',$this->supplier_name,true); $criteria->compare('debit_amount',$this->debit_amount)

Yii Php Framework : the first choice for development

Ezeelive Technologies is leading yii php development company. We have started work with core php and then frameworks e.g. Zend, CakePhp, CodeIgnator (CI), Symphony, Kohana and from last 3 year we are using Yii Framework. Now We are prefering using Yii framework in Major development work. Checkout below reason why Yii Framework is our First Choice in development : 1. The first and major advantages is Yii has Web GUI based GII module for generate module, model, controller and views 2. In GII You can select which view you want to create or not by selecting in one screen only. 3. Creating Model in Gii Provide AutoPopulate Table Names to selection 4. Yii has in-build ORM module (Yii Active Record) to making query faster, validate and secure (protection from sql injection)  5. Yii is build for development faster and provide delivery to client on time. The Gii Module generate the require structured CRUD with all the basic input validation, search and listing, view and update functionality.

Advantages of Web Application Development

Web application  is an application that is accessed over a network such as the Internet or an intranet . The term may also mean a computer software application that is coded in a browser-supported language (such as  JavaScript , combined with a browser-rendered markup language like HTML) and reliant on a common web browser to render the application executable. 1. it is cheaper to implements. For example, if you develop application with .NET you need to have clients that install windows. but in  web application , once you develop, any client can access your  web apps with any platform . 2.  web app development  are simple (once you know about  css javascript and framework ) it can make your life easier. 3. No virus and easy to deploy/install for client. 4. Only one copy of a program will ever need to be updated. 5. 99% of the code is platform independant. 6. Less chance of finding restrictions that the clients computer may have imposed 7. Accessible from wherever your users are 8. Cr

Yii Framework And Its Features

Yii is a free,  open-source Web application development framework  written in PHP5 that promotes clean, DRY design and encourages rapid development. It works to streamline your application development and helps to ensure an extremely efficient, extensible, and maintainable end product. Yii is a perfect choice for any sized project. However, it has been built with sophisticated, enterprise applications in mind. Features of Yii Framework :  Whether you are one developer building a fairly simple Web site, or a team of distributed developers building an extremely complex Web application, using Yii is like augmenting your development team with additional experienced, professional, and efficient resources. 1.  Model-View-Controller (MVC) design pattern :   Yii implements the model-view-controller (MVC) design  pattern, which is widely adopted in Web programming. MVC aims to separate business logic from user interface considerations, so that developers can more easily change each part wi