In WordPress admin/back end it says : Warning: cannot modify header information – headers already sent by (output started at /home/…../header.php:3) in /home/…. on line xxx Well, this is a very common problem and old too, which has been discussed/resolved in so many places on the WEB (IMO) and it...
→ Read MoreIn WordPress, the search url is not pretty, I mean it’s not search engine friendly (uses query string), it looks something like http://example.com?s=foo and it’s doesn’t look very professional. So, if you want to change the url to something like http://example.com/search/foo then it’s possible and very easy, just 2 steps....
→ Read MoreGetSetGo is a dynamic setter-getter library for PHP 5.4+. Its developed by me and Muhammed Usman, and yes, it’s well unit tested. You can use methods like setFoo('bar') and getFoo(), which you don’t have to create (in your class). GetSetGo will make these methods work for you automatically as long...
→ Read MoreIn Php there are many useful magic methods and two of those are __call() and __callStatic() methods. These magic methods are similar to __get() and __set() but only difference is that these are for class methods instead of class properties (variables). If we call an undefined method or a method...
→ Read MoreIn Laravel 4 there is a very nice way to bind data automatically with a view using a View Composer. View composers are callbacks or class methods that are called when a view is created. If you have data that you want bound to a given view each time that...
→ Read More