PHP Framework

How to include multiple javascript files in Zend Framework

If you are working with javascript files and using Zend Framework than you must be aware with how to include javascript files in view files ? Look at below syntax to include more than one javascript files. If you write individual statement for each file than it will include first file 2 times and so on.

Interacting with HTML form data in Zend Framework

As i mention in my previous post, i am working with Zend Framework from scratch. I like to share small small tips which are helpful to you guys. If you are working with forms and need to check that the form is submitted or not ? and if form is submitted than Retrieve the form data and process it.

POP3/IMAP Email with attachment-Read & Forwarding with PHP

Do you know how we can read, forward or transfer the POP3/IMAP email to another email address ? I came across this situation. I need to read the email from one account and need to forward that mail to another email account.

Change/Disable the default layout/Set layout in Zend Framework

I have started working on Zend Framework just before couple of days. Zend Framework is MVC based and easier to work with. The power of any Framework is its core library, Zend Frameword also have a wide range of functions in its core library which makes most of the programming task easier.

Integrate WordPress Blog into CakePHP Application

I have worked on CakePHP application like Customer Relationship Management (CRM),Content Management Systems(CMS),Online bidding application and many more.Use Wordpress Blog along with CakePHP application..

CakePHP PaginatorHelper-Sorting problem solved

CakePHP provide its own Pagination helper using which you can easily add paging and sorting functionality in your CakePHP application. Using this PaginatorHelper class for one model, all instruction is given in below link. If you works with more than one model. means using belongsTo or hasMany relation and getting records from more than one table than paging is as simple as one table. But for sorting…

How to use OR in find method – CakePHP

When any developer is working with any web application, he/she will constantly interact with the Select Query. As i am working with CakePHP, i also need to use Select Query often. For Select Query in CakePHP, you can use find method of Model which gives you the data as per conditions given in find method. If you write more than one conditions in conditions array passed in find method than by default it will take OR clause and make a query string with "OR".

Set Meta Tags (SEO Tags) in CakePHP

In my previous post, i show you the way how to set Page Title Tag in CakePHP. But setting Meta keywords and Meta Description is not the same way as Meta Title. .Also Meta Keyword and Meta Description is important part of Search Engine Optimization. Refer to below syntax to set Meta tags in CakePHP.

Set Meta Title (Page Title) in CakePHP 1.2/1.3

As i mention in my previous posts, CakePHP 1.3 come up with lots of new syntax changes. I was looking for a Meta Title SEO tag for each page. I need to set this Meta Title (Page Title) for each page. You must be aware that Page Title can be set in method which we write in respective controller.

Zip Component in CakePHP-Add files in Zip

Today i have implemented a Zip functionality in CakePHP. If you want to create an archive file consists of some files to give a download Zip file option to user than i might help you to show the steps. Below are the steps how to zip all files and save it to some folder.