document.write("
<?php
class Car {
//properties
public $price;
public $colour;
}
//start the build process
$myCar = new Car();
oop3 - Snippet hosted by \"Cacher\"
");