Please note, this is a STATIC archive of website technosmarter.com from 20 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.




<?php
class Laptop {
    function Laptop() {
        $this->model = "ispiron";
    }
}

// create an new object
$b = new Laptop ();

// Show all properties 
echo $b->model;
?>