[PHP-DB] Select Fields

2002-11-06 Thread Tyler Whitesides
Hi, Sorry if this is ametuer, but I have been staring at this code for so long, trying to find out why my selection fields are gathering values, and I cant find the problem. Thanks, Tyler -- ? include './include/vars.php'; include './include/dbconnect.php'; ? html head title?= $title

Re: [PHP-DB] Select Fields

2002-11-06 Thread David Smith
Tyler, You probably need one or two of the following: 1. Put single-quotes around case in your SQL (where type like 'case') 2. Use wild-cards in your where statement (where type like '%case%') Good luck! --Dave On Wed, 2002-11-06 at 23:31, Tyler Whitesides wrote: Hi, Sorry if this is

Re: [PHP-DB] Select Fields

2002-11-06 Thread Tyler Whitesides
Thank you putting '%case%' instead of case worked! - Original Message - From: David Smith [EMAIL PROTECTED] To: Tyler Whitesides [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, November 06, 2002 10:47 PM Subject: Re: [PHP-DB] Select Fields Tyler, You probably need one or two