Re: [PHP-DB] HUGE problem here

2002-06-08 Thread Ruprecht Helms
Hi Camelia Enderby, hi others, > try this for the delete query: > $query = "DELETE FROM auth WHERE name='$deletename'"; > See if it helps. how the case there a different names in the table that are equal to the value of deletename. try to identify the recordset you want to delete by his ID and

RE: [PHP-DB] HUGE problem here

2002-06-08 Thread César L . Aracena
e 2002 06:14 a.m. > Para: César L. Aracena; PHP DB List > Asunto: RE: [PHP-DB] HUGE problem here > > "DELETE FROM auth WHERE name=$deletename LIMIT 1"; > > needs quotes > > "DELETE FROM auth WHERE name='$deletename' LIMI

RE: [PHP-DB] HUGE problem here

2002-06-08 Thread Peter Lovatt
"DELETE FROM auth WHERE name=$deletename LIMIT 1"; needs quotes "DELETE FROM auth WHERE name='$deletename' LIMIT 1"; This may be the problem. HTH Peter --- Excellence in internet and open source software --

Re: [PHP-DB] HUGE problem here

2002-06-08 Thread Camelia Enderby
try this for the delete query: $query = "DELETE FROM auth WHERE name='$deletename'"; See if it helps. Cami - Original Message - From: "César L. Aracena" <[EMAIL PROTECTED]> To: "PHP DB List" <[EMAIL PROTECTED]> Sent: Saturday, June 08, 2002 10:03 AM Subject: [PHP-DB] HUGE problem here