Re: PHP Classes For Beginners Hi saravanan i have created a sample class structure for u, by using this u can understand to build a simple class. Now i have written about the components of class. Creating Classes in PHP
1. Every class definition begins with the keyword class,
2. Then the name of the class name
3. then pair of curly brackets like { }
4. We can define member variables and member methods between these curly brackets Example Class structure
Class Class_name
{
var member_variable1
var member_variable2
..
..
var member_variablen
function memner_function1()
{
}
…
….
function memner_functionn()
{
}
}
__________________ Thanks & Regards, Jegan CBK "We will either find a way, or make one!” |