When I open index.php in the browser, the following error appears:
Parse error: syntax error, unexpected 'define' (T_STRING) in C:\wamp\www\exemplo1\html\includes\config.inc.php on line 12
in the config.inc.php is:
12 define ('BASE_URI', 'C:\wamp\www\exemplo1\html\\');
13 define ('BASE_URL', 'localhost/exemplo1/html/');
14 define ('MYSQL', BASE_URI . 'mysql.inc.php');
in the mysqli_inc.php is:
2 DEFINE ('DB_HOST', 'localhost');
3 DEFINE ('DB_USER', 'root');
4 DEFINE ('DB_PASSWORD', '');
5 DEFINE ('DB_NAME', 'ecommerce1');
7 $dbc = mysqli_connect (DB_HOST, DB_USER, DB