Need some directions with this question please:
in login.php we have:
// Assign $data to $errors for login_page.inc.php: $errors = $data;
and in login_page.inc.php we have:
// Print any error messages , if they exist: if (isset($errors) && !empty($errors)) { echo '<h1>Error!</h1> <p class="error">The following error(s) occurred:<br />'; foreach ($errors as $msg) { echo " - $msg<br />\n"; } // End of foreach. echo '<\p><p>Please try again.</p>'; /