>my querylooks like this :
>DELETE  FROM gastenboek WHERE entryID=$dele .

I think that the mySQL query should look like:

DELETE * FROM gastenboek WHERE entryID=$dele

so, you should do something like this:

DELETE $thinks_to_delete FROM gastenboek WHERE entryID=$dele

After the "DELETE" you must say what to delete from the table. If you want
to delete more than one thing you should use more than one variable, one for
each entry.

I hope this help you because I'm a newbie with this. :)


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to