<!DOCTYPE html><html><body><?phpclass Car { function Car() { $this->model = "VW"; }}// create an object$herbie = new Car();// show object propertiesecho $herbie->model;?></body></html>