September 30, 2025
//class me Property and Method Use Hotey Hin
//Property = Variable Mostly
//Method = Function Mostly
//How TO WRITE
class Father {
Public $a , $b, $c;
}
September 30, 2025
Class Calculation{
Public $a, $b, $c;
Function Sum(){
$this->c = $this->a+$this->b;
}
}
$object = new Calculation();