Jump to content

Need help with a file


Seitan

Recommended Posts

  I need help with this code, I keep getting a parse error, but I can`t see what I did wrong. I`ve looked it over a billion times, I just don`t get what I`m forgetting. Here is my code

[code]
<?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 ('../shhhhhhh/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>";
        ?>
        <br><br>
       
<?
    }
[/code]
Link to comment
https://forums.phpfreaks.com/topic/29626-need-help-with-a-file/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.