Back To PHP Classes and Inheritance Index
rollno=1; $this->name="abcdef"; $this->clas=11; $this->marks=90; } function showdata() { print('rollno of student is ' . $this->rollno); print('
'); print('name of student is ' . $this->name); print('
'); print('class of student is ' . $this->clas); print('
'); print('marks of student is ' . $this->marks); print('
'); } } $ob=new student; $ob->showdata(); ?>