PHP Freelancer

 

PHP Programmer India

PHP Freelancer PHP Freelancer India PHP Programmer India PHP Freelancer Indian Freelancer Freelance Programmer Freelance Developer Freelance Web Developer Freelance Programmer India Hire PHP Developer India Wordpress Developer India CakePHP Developer India

Archive for May, 2010

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..

Browse Server & Image Upload Problem in CKEditor Solved

Some days ago, i moved from FCKEditor to CKEditor. CKEditor looks preety good but the problem is with upload image option. In demo application it shows me Browse Server & Upload button for uploading image or media but when i download it and integrate it into my web page, Browser Server and Upload option disappear.

Find first/next hidden Div using jQuery

Today i need to show(find) the first hidden element of parent div which must be visible when i remove any of visible divs. This can be done by finding last visible element and then find the first hidden element using next selector of jQuery.

Find last visible div using jQuery

You may be stuck when you need to find the last visible element using jQuery/javascript. For finding the last visible element,look at below jQuery code.  You need to use Visible selector with last selector of jQuery.

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…

Number of Child elements (length) using jQuery

Here i am showing you the way to get the number of child elements for parent div. This may be helpful to you when you are show/delete records using jQuery-Ajax and want to update the page accordingly. For e.g. This counting of Children elements helps you to show message like no records when you delete last record.

Find nth Parent Div using jQuery

Are you looking for finding the parent div in easiest way using jQuery ? You can easily find parent div element or any parent HTML element using jQuery. You can find nth div element using this parent function. Look at below link for parent functionality of jQuery.

Move (Copy) Div from one place to another using jQuery

jQuery is very useful while you develop any web application. Whatever you can do with jQuery is not enough, you should know much more and implement more and more with jQuery. Yesterday i need to move one of my "Pending" record to "Paid" records section once i click on selectbox and change the record to "Paid" status.

UCFIRST-Make first character Capital using MYSQL

MySQL database is the world's most popular open source database because of its fast performance, high reliability, ease of use, and dramatic cost savings. As i am using MYSQL with developing my PHP web application, i need to make a simple String operation in MYSQL and i would like to share it with you guys. I need to make a table field values to uppercase first charactor and than lowercase all other charactors.