Hi there,
I have double checked the column names....Its giving me a Warning: Bad
arguments to implode() error....
Thanks.
Lewis

----- Original Message -----
From: "1LT John W. Holmes" <[EMAIL PROTECTED]>
To: "Lewis Watson" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Monday, February 24, 2003 10:36 AM
Subject: Re: [PHP-DB] Checkboxes to gather rows to delete


> > Thanks..... The below code returns each ID in an array like so...
> > Array ( [0] =>101 [1] => 201 ). Thanks for the help!
> > Lewis
> >
> > $teacherID = $_POST[teacherID];
> > $deleteID = $_POST[deleteID];
> >
> > if(isset($delete_teacher)) {
> >       This is where I should loop through checking for the chosen ones
to
> > delete.....
>
> $query = "DELETE FROM table WHERE teacherID IN (" .
implode(',',$deleteID) .
> ")";
> mysql_query($query);
>
> >     }
> >
> > <form action="" method="POST">
> >  print "<input type=checkbox name=\"deleteID[]\"
> > value=\"$row[teacherID]\">";
> >  print "<input type=submit  name=\"delete_teacher\"  value=\"Delete
the
> > Checked Teachers\">";
>
> Make sure the column names are correct, but that's it.
>
> ---John Holmes...
>
>


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

Reply via email to