Here is my whole page, I swear I can't find any missing ';' .
<?php # view_users.php
// This script retrieves all the records from the users table.
$page_title = 'Breakfast';
$header = 'Breakfast';
include ('../php/header.php');
require_once ('../shhhhhhhh/mysql_connect.php');
$query = "SELECT `Recipe Name` AND 'Recipe_Number' FROM `Recipes` WHERE `Category` LIKE 'Breakfast' ORDER BY `Recipe Name` ASC";
$result = @mysql_query ($query);
if ($result) { // If it ran OK, display the records.
// Fetch and print all the records.
while ($row = mysql_fetch_array ($result, MYSQL_ASSOC)) {
echo '<a href = "recipes.php?id=' . $row['Recipe_Number']'">' . $row['Recipe Name'] . '</a>'\n;
}
} else { // If it did not run OK
echo '<p class="error">There is no recipes?!?</p>'; //Public message.
}
mysql_close(); // Close the database connection.
include ('../php/footer.php'); // Include the HTML footer.
?>