Wed Oct 26, 2011 12:44 am
<?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;
}
}
?>
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.