<?php $myCar = new Car(); $myCar->brand = "Toyota"; $myCar->color = "Red"; echo $myCar->brand . " is " . $myCar->color; $myCar->drive(); ?>