Código PHP :
class FrontController{
public $hola;
function main(){
include "View.php";
}
function __construct(){
$this->$hola = "hola";
...
Código :
Notice: Undefined variable: hola in C:\wamp\www\AoITutorials\Controller.php on line 12
