-2

Hello I know there are a lot of threads like this; I tried and still not working.

It means the: Parse error: syntax error, unexpected 'class' (T_CLASS) in /var/www/html/public_html/tutorials/mvc/app/controllers/home.php on line 5

My home.php file:

<?php

require_once "core/Controller.php"

class Home extends Controller
{
  public function Index()
  {
    echo 'home/index';
  }
}

Thank you in advance.

tereško
  • 58,060
  • 25
  • 98
  • 150
Mauricio Reyes
  • 152
  • 2
  • 11

1 Answers1

1

you need to add ";" after require_once()