i am beginner on php so now i try to learn object oriented i was goggling i got it some ideas but not clear concept.So i come there.Please any php guru give simple example of ho
You have to create a class person and two methods..
class Person{ public $name; public function showName() { echo $this->name; } public function enterName() { //insert name into database } }