Posts

Showing posts from June, 2014

Object Oriented Programming with PHP - Lesson 01

Image
Meet you again on Lesson one, Hope you have got a clear picture about Introduction in your mind. For my today and coming session you have to create two php files : 1. index.php 2. oop.php OOP is all about creating module based codes. So our object oriented PHP code file also a dedicated php file(oop.php) then we will added to our normal file called index.php In today's session all our Object Oriented PHP codes are embedded to oop.php Creating A Class - classes are the templates, they are used to define an objects You can define your own class with the keyword class followed by the name you like 1 2 3 4 5 <?php class workers { } ?> Classes are the blue-prints for php objects we will see about more on class later. Classess contain variables and functions these are called properties in OOP. Now Lets Create a variable into the above class "workers" 1 2 3 4 5 <?php class workers { var $name ;

Object Oriented Programming with PHP - Introduction

Image
OOP is a kind of approach added in PHP5 that makes building complex, modular and reusable web applications that much easier. PHP programmers now have the big power of Object Oriented Concepts in PHP on the release of PHP5.

Computer Networking A Top-Down Approach 6th Edition

ARTIFICIAL INTELLIGENCE - Reference Book

Image
ARTIFICIAL INTELLIGENCE Third Edition Author : Elain Rich, Kevin Knight & Shivashankar B Nair

Reading Value From Table Using Java Script