Re: [PHP-DB] Re: ?!? wats wrong?

2002-05-14 Thread Jeffrey_N_Dyke
[EMAIL PROTECTED] south.net> cc: Subject: [PHP-DB] Re: ?!? wats wrong?

[PHP-DB] Re: ?!? wats wrong?

2002-05-14 Thread Nicole Amashta
Hi, I am used to ID fields being numeric. If this is the case in your table, remove the single quotes from the id value '1' because that will cause error also. So: > SELECT * FROM personen WERE Id != '1' ORDER BY Bijnaam should be: SELECT * FROM personen WERE Id != 1 ORDER BY Bijnaam *IF*

[PHP-DB] Re: ?!? wats wrong?

2002-05-10 Thread J. Wharton
Hi Peter, Just a shot in the dark, but make sure that everything is correct case-sensitive wise. I know this has caused me grief in the past. J. Wharton "Peter Roescher" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]... > I have a mysql query like this > > SELECT * FROM personen WE