Chapter 9 Using PHP with MySQL
header.html Script 9.1 on page 266 http://csweb.hh.nku.edu/csc301/frank/ch09/includes/header.html ch09\includes\header.html
mysqli_connect.php Script 9.2 on page 269 http://csweb.hh.nku.edu/csc301/frank/ch09/mysqli_connect.php ch09\mysqli_connect.php
Invalid Password http://csweb.hh.nku.edu/csc301/frank/ch09/mysqli_connect2.php Could not connect to MySQL: Access denied for user 'frank'@'localhost' (using password: YES)
Access Information // Set the database access information as constants: DEFINE ('DB_USER', 'frank'); DEFINE ('DB_PASSWORD', 123456'); DEFINE ('DB_HOST', 'localhost'); DEFINE ('DB_NAME', 'db_frank');
mysqli_connect $dbc = @mysqli_connect (DB_HOST, DB_USER, DB_PASSWORD, DB_NAME) OR die ('Could not connect to MySQL: ' . mysqli_connect_error() );
Protecting Connection Information Page 270 Figure B Store connection information outside of www.example.com (htdocs folder) Use .php extension
sql.sql Use only Chapter 5
users table mysql -h csweb.hh.nku.edu -u frank -p <sql.sql mysql> use db_fall17_frank; Database changed mysql> show tables; mysql> select * from users;
register.php Script 9.3 on page 275 http://csweb.hh.nku.edu/csc301/frank/ch09/register.php ch09\script_09_03\register.php
Running MySQL Query // Make the query: $q = "INSERT INTO users (first_name, last_name, email, pass, registration_date) VALUES ('$fn', '$ln', '$e', SHA1('$p'), NOW() )"; // Run the query. $r = @mysqli_query ($dbc, $q); if ($r) { // If it ran OK.