Unable to open passwords file.\n"; exit; } while (!feof($file)) { $line = fgets($file, 1024); $line = chop($line); $uname = strtok($line, "="); $passwd = strtok("="); if (($uname == $PHP_AUTH_USER) && ($passwd == $PHP_AUTH_PW)) { $page = "\n". "\n". "Answers\n". "\n\n". "\n". "

Answers

\n". "A complete set of answers to the exercises at the end of each chapter \n". "is being made available to lecturers and instructors. The answers are \n". "very nicely produced in web format, with discussion interspersed with \n". "Java text. The full program can also be downloaded.\n\n". "

Here are two sample answers in the active format:\n\n\n". "

\n". "Chapter 3 Question 3
\n". "Chapter 6 Question 2
\n\n\n". "". "

\n". "\n". ""; echo "$page"; break; } } fclose($file); } ?>