<?php class myCar { public $model; function __construct() { $this->model = "Sports"; } } $Range_Rover = new myCar(); echo $Range_Rover->model;
You have javascript disabled. You will not be able to edit any code.