Hello,
A quick and simple question, what is the problem with the following simple code /
<?php
class coucou{
public $welcome;
//public $guest = "Mr";
function _construct($welcome){
$this->welcome = $welcome;
}
};
$hello = new coucou("this is BBPARIS");
echo $hello->welcome;
?>