Re: [PHP-DB] handling of checkboxvalues

2006-02-13 Thread Luis Morales
umm, ok... if you put your using echo: "; ?> Or over html : "'>" On this way both samples must be ok. Good luck Luis Morales On Sun, 2006-02-12 at 10:33 +0100, Ruprecht Helms wrote: > Luis Morales wrote: > > Well, > > > > you can do this... > > > > > > > > form name='my_form' m

Re: [PHP-DB] handling of checkboxvalues

2006-02-12 Thread Ruprecht Helms
Hi Luis, you can do this... form.php form name='my_form' method='post' action='form.php' ENCTYPE='multipart/form-data'

Re: [PHP-DB] handling of checkboxvalues

2006-02-12 Thread Ruprecht Helms
Luis Morales wrote: Well, you can do this... form name='my_form' method='post' action='form.php' ENCTYPE='multipart/form-data' "; ?> -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] handling of checkboxvalues

2006-02-11 Thread Luis Morales
Well, you can do this... form.php form name='my_form' method='post' action='form.php' ENCTYPE='multipart/form-data'

RE: [PHP-DB] handling of checkboxvalues

2006-02-11 Thread Bastien Koert
Give the checkbox value the id of the record to be deleted...if its checked, then you can simply do an in string check in the sql $sql = "delete from table where id in ("{$_POST['user_loeschen']}"; bastien From: Ruprecht Helms <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: php-db@l