URL


Learn CakePHP From Novice to Professional : Part 2

Model-View-Controller

Model-View-Controller Cake enforces an MVC structure for your web applications. Basically, it effectively separates typical operations into specific areas: MODELS : for all your database interaction VIEWS : for all your output and displays CONTROLLERS : for all your commands/scripts for input and program flow The typical PHP application mixes each of these three functions Read more...

 

WordPress Multiple Category Search

selectBox

Since when I started wordpress, I had a question in my mind, why wordpress doesn’t give multiple search option? I googled a lot, but couldn’t find a plugin or code which exactly works. So finally decided to go more into deep of wordpress and php, and came up with a code which works. Functioning of Read more...

   

WordPress Search URL Rewrite

Have you ever considered your wp-site search URL? http://yoursite.com/?s=searchterm Also after setting the custom permalink structure, the only URL which is not effected is the search URL, it still remains the same. OK, now goto your site, and after your root URL, just type this search/term http://yoursite.com/search/term Woila!!!! you’ll find that the search worked, just Read more...

 

Configure VPS | Install LAMP on Centos VPS Part 1

Few days before when I had a VPS and needed to install wordpress, I found it very difficult because very few resources were available on google So I am here now with my new post, On HOW TO INSTALL LAMP ON CENTOS First buy an unmanaged VPS, and get ssh access Then install Putty software Read more...