Switch to full style
PHP examples
Post a reply

PHP class example

Wed Oct 26, 2011 12:44 am

Here is a php class example for website user.
Code:

<?php 


     class User
{ 
     public  $username
,$password, $firstname,$lastname,$email,$address1,$address2
,$telephone,$mobile,$city,$gender,$country_code,$birthday;
     
     public function __construct
($username,$password, $firstname,$lastname,$email
,$address1,$address2,$telephone,$mobile,$city,$gender,$country_code,$birthday) 
     
{
        $this->username=$username;
        $this->password=$password;
        $this->firstname=$firstname;
        $this->lastname=$lastname;
        $this->email=$email;
        $this->address1=$address1;
        $this->address2=$address2;
        $this->telephone=$telephone;
        $this->mobile=$mobile;
        $this->city=$city;
        $this->gender=$gender;
        $this->country_code=$country_code;
        $this->birthday=$birthday;
     }
     
     
     
     
}

 

?>
 




Post a reply
  Related Posts  to : PHP class example
 Define class helper class to check the method existance     -  
 java abstract class,concrete class and interface     -  
 relationship between the Canvas class and the Graphics class     -  
 Define class inside another class C++     -  
 inner class that is a member of an outer class?     -  
 load class to applet- load frame class to applet     -  
 PHP example for a class     -  
 Inheriting a Class in php     -  
 concrete class     -  
 Is a class a subclass of itself     -  

Topic Tags

PHP OOP