<?php
class goods {
	public $price;
}

class table extends goods{	
	public $color;
	
	function __construct($price, $color) {		
		$this->price = $price;
		$this->color = $color;	
	}	
}

$newTable = new table(5000, "red");

print_r($newTable);