Results 1 to 2 of 2
  1. #1
    Join Date
    May 2006
    Location
    Varrok
    Posts
    863
    Tokens
    0

    Default Php.. can someone help ( again )

    Ok i have this
    PHP Code:
    <?
    ob_start
    ();
    include(
    "config.php");
    {
    $getquest mysql_query("SELECT * from questinfo  WHERE `show` = '0' ORDER BY `id` DESC ");
    while (
    $quest mysql_fetch_array($getquest))

    ?>
    but i want it to also only to display member = 0

    so i want
    WHERE `show` = '0'
    and
    WHERE `member` = '0'

    can anyone help??

  2. #2
    Join Date
    Aug 2004
    Location
    bristol
    Posts
    3,799
    Tokens
    0

    Latest Awards:

    Default

    Code:
    SELECT * FROM `questinfo` WHERE `show` = '0' AND `member` = '0' ORDER BY `id` DESC
    kinda quit.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •