Ever wanted to be a expert in WordPress or have tried to resolve you basic blog issue? Here’s some nice tips that can really lead to learn cool things about wordpress. You must have some basic editing capability in wordpress and basic know how to PHP to perform below tweaks and home them! Let us [...]
PHP – Making Use of an MVC Framework PHP is one of the most popular programming languages used today, and it will most likely continue to gain popularity. Compared to other programming languages, it is easy to learn, but can be used to create large web applications. Using a framework as a platform within PHP [...]
Continuing my posts on PHP Magic Functions lets close this topic now and talk about rest of the Magic Functions. __sleep and __wakeup : Serialize and Unserialize Your Objects as You Wish Before talking about these magic functions, I want you to be clear about serialization and unserialization of a variable. Some times you need [...]
In my previous post ( PHP Magic Functions ), I discussed about __construct, __destruct, __call and __callStatic. Lets explore a few more magic functions … __set and __get : Define Object Data Members at Run Time In PHP what happens when you try to write data to an undefined object data member. PHP doesn’t throw [...]
There are some reserved function names in PHP class starting with __ ( double underscore ). These are __construct, __destruct, __isset, __unset, __call, __callStatic, __sleep, __wakeup, __get, __set, __toString, __set_state, __invoke and __clone. You cannot use these functions to serve your logical purpose but these are meant to be used for providing magic functionality. Lets start [...]
Setting up a customizable PHP for for your website or blogs is definately a hard job. Keeping this in mind, Here I am presenting a list of 20 customizable premium PHP contact forms for several purposes- sign-up forms, advanced contact forms powered with Ajax, jQuery, e-mail signup forms, file uploads and much more. All these [...]
Picking a language for a programming project is never an easy task. Depending on your choice, your hosting costs can differ, the documentation can be helpful or nonexistent, and your choice of IDE or other programming tools can change. This is especially true with web programming projects. Because you are not always in control of [...]
Rss parser is an easy to use API that handles all of the dirty work when it comes to fetching, caching, parsing, normalizing data structures between RSS and Atom formats, handling character encoding translation, and sanitizing the resulting data. Here is a collection of 10 RSS parsers. 1. Lastrss Visit site . 2. Simplepie Visit [...]
Programmers often use tools to format programming language source code in a particular manner. Proper code formatting makes it easier to read and understand. Moreover, often different programmers have different preferred styles of formatting, such as the use of code indentation and whitespace or positioning of braces. Here is the list of 19 code beautifiers [...]
Apache ActiveMQ is one good option for implementing message queue in your PHP application. It can be easily installed on your server and it’s web accessible admin interface really makes administrator’s life easy. It can be easily connected with PHP via STOMP. I will suggesst to use MySql for Data persistance and start ActiveMQ as [...]
Thinking of implementing caching for your php application , you are at a right place. Just in 10 simple (copy and paste) steps you can install and access Memcached Server. Step1: Install libevent ,libmemcached and libmemcached devel (dependency) 1 2 yum install libevent yum install libmemcached libmemcached-devel .