Featured Articles
428 days agojquery animated charts and graphs
447 days agojQuery Calendar Widget Plugin
Powerful jQuery Event Calendar: wdCalendar
wdCalendar is a jQuery plugin that enables us to create an event calendar that functions similar to the popular Google Calendar.
With a drag’n drop interface and feature-rich ...
Increase Website Loading Speed With PHP Speedy
PHP Speedy is a a PHP script which increases the loading times of web pages.
PHP Speedy automatically joins all the appropriate files together and compresses them which decreases the ...
Javascript timer to calculate remaining days and time
This javascript timer will show you the reaming days, hours , minutes and seconds in the passed date and the current date. Just assign your feature date and it will calculate the remaining ...
OOPS in PHP5 – Polymorphism in oops
Polymorphism in PHP5 is a technique where the function to be called is detected based on the class object calling it at runtime. The basis of Polymorphism is Inheritance and function ...
OOPS in PHP 5 – __destruct() Method
Destructor are special function in Object Oriented Programming. It gets called automatically whenever object of a class is destroyed or goes out of scope. This is useful for clean up ...
PHP5 OOPS Constructor – __construct() Method
Construcors are special function in object oriented programming. It gets called automatically whenever object of class is created. This is useful for performing any pre operations before ...
PHP5 OOPS Tutorial – Defining Class Constants
In PHP5 we can defines class level constants that will not change its value within the class scope. We can use the class constants in php5 using a new keyowrd “const”. Only ...
Define Methods for the Class
Now once you have declared class and all its data members now will have to declare all the methods that the class will use. This tutorial will guide you to create methods for class.
...
Define Attributes for Class
We have seen on how to declare class and now we have to define the attributes or the data member that will hold the data within the class. This tutorial will guide you to create attributes ...
Declaring Class and Initializing Class Object
In Object Oriented Programming Classes is the main entity and all other features of OOP work around the Classes. In this tutorial we will be discussing on declaring class in PHP5. Also ...
