document.write("
<?php
class Car {
//properties
public $price;
public $colour;
//constructor
function __construct($myPrice, $myClour){
$this->price = $myPrice;
$this->colour = $myColour;
}
}
//start the build process
$myCar = new Car(50000, "Blue");
oop6 - Snippet hosted by \"Cacher\"
");