Jump to content
Larry Ullman's Book Forums

YELLOWSKT

Members
  • Posts

    4
  • Joined

  • Last visited

YELLOWSKT's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Chapter 4 ex1 html and css: The account dropdown-menu is not expanding to show the logout, Renew, change_password etc. some help? thank you!
  2. the problem was in my directory and in the DEFINE('CONTACT_EMAIL', 'you@example.com'); I'm using localhost so I commented the code: //DEFINE('CONTACT_EMAIL', 'you@example.com'); and it worked. In windows normal bar also works: 'C:/wamp/www/exemplo1/' or 'C:\wamp\www\exemplo1\\'. thanks!!
  3. 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...