Jump to content
Larry Ullman's Book Forums

YELLOWSKT

Members
  • Posts

    4
  • Joined

  • Last visited

Posts posted by YELLOWSKT

  1. 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_PASSWORD, DB_Name);
    8  mysqli_set_charset($dbc, 'utf8');
     
    10  function escape_data ($data, $dbc) {
     
    12  if (get_magic_quotes_gpc()) $data = stripslashes($data);
    13  return mysqli_real_escape_string ($dbc, trim ($data));
    14  }
     
    Can someone help me?
     
×
×
  • Create New...