Access denied chapter 11
I would appreciate some help here. In the book example conn.inc.php,
<?php
$conn = mysql_connect("localhost", "jcstolz", "r3minyL") or die(mysql_error());
$db = mysql_select_db("registration") or die(mysql_error());
?>
what does the line 2 represent? Are the username and password on this line match the ones in the admin table of registration database? Substituting 'johndoe'and 'jane' did not work. Thanks.
chokk
|