-6

Install new PHP 7.01.

And have some errors:

PHP Notice:  Undefined variable: __ROOT__ in C:\web\index.php on line 60

require_once($__ROOT__.'/base/DBMS.php'); // - line 70
PeeHaa
  • 69,318
  • 57
  • 185
  • 258
manking
  • 386
  • 1
  • 5
  • 20

1 Answers1

3
$__ROOT__ 

seem's to be your document root (writed as a "magic constant" variable.. and visibly, the transition to php7 broke... :)

often it's defined by using real php magic constant like :

For PHP >= 5.3.0 try

__DIR__ 

For PHP < 5.3.0 try

dirname(__FILE__)
MTroy
  • 887
  • 8
  • 19