<?php
class Sample{
public $name;
public $age;
public function __construct($Name , $Age){
$this->name = $Name;
$this->age = $Age;
}
public function showDetails(){
echo "Name = $this->name , Age = $this->age";
}
}
$newSample = new Sample("Sudhir" , 44);
$newSample->showDetails();
To embed this program on your website, copy the following code and paste it into your website's HTML: