Tag: PHP

Post Pic

PHP – Making Use of an MVC Framework

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

Post Pic

PHP Magic Functions: Best Part of Object Oriented PHP – Final Part

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

Post Pic

PHP Magic Functions: Best Part of Object Oriented PHP – Part 2

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

Post Pic

PHP Magic Functions: Best Part of Object Oriented PHP – Part 1

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

Post Pic

20 Premium and Customizable PHP Contact Forms for your web app

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

Post Pic

14 descriptive reasons why Ruby may be better than PHP

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

Post Pic

19 code beautifier and formatter to save development time

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

Post Pic

10 fresh open-source scripts for your upcoming web app

Free and open source software is software that is liberally licensed to grant the right of users to use, study, change, and improve its design through the availability of its source code. Here is the list of ten fresh open source script which may force you to open new web application. 1. Getfrapi FRAPI is [...]

Post Pic

18 must-bookmark cheatsheets for webdevelopers

A cheat sheet or crib sheet is a concise set of notes used for quick reference. Cheat sheets are so named because they may be used by students without the instructor’s knowledge to cheat on a test. Here is a collection of 18 cheat sheets , a must have collection for web developers. 1. CSS [...]

Post Pic

11 easy steps for installing Apache ActiveMQ and configuring it for PHP application

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

10 baby steps to install Memcached Server and access it with PHP

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 .

Page 1 of 11