FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » delete multiple records code
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
Re: delete multiple records code [message #174442 is a reply to message #174438] Sat, 11 June 2011 18:55 Go to previous messageGo to previous message
Jerry Stuckle is currently offline  Jerry Stuckle
Messages: 2598
Registered: September 2010
Karma:
Senior Member
On 6/11/2011 2:10 PM, Co wrote:
> Hi All,
>
> I have some code which should delete some records.
> It is a bulletin board page with posts. I want to delete the posts of
> which the checkbox has been checked.
>
> echo '<form name="form" id="form" method="post">';
> if (isset($_SESSION['idx'])) {
> if($account_type == 'c') {
> $outputList .= '<td width="10%"><div class="name"
> align="left"><input type="checkbox" name="delete" value="' . $id . '" /
>> </div></td>';
> }
> }
>
> echo '</form>';
>
> if (isset($_POST['bb_index'])&& !empty($_POST['form'])) {
> foreach($_POST['form'] as $id) {
> // This is a loop with the var $id containing
> // all items that were checked to be deleted
> print 'Delete this $id';
>
> }
> }
>
>
> if (isset($_SESSION['idx'])) {
> if($account_type == 'c') {
> echo '<a href="bb_index.php?post=delete"><img src="images/
> Delete.png" border="0" width="30" height="30" /></a>';
> }} ?>
>
> My code doesn't print any records even when some are checked.
>
> Marco

To start with, what's in your $_POST variable?

Also, if you set the name of your checkbox to "delete", you will only
get one value in your $_POST variable. You can either give each
checkbox a unique name, or (preferably) use 'delete[]' - which will
provide an array of checked boxes in your $_POST variable.


--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
[Message index]
 
Read Message
Read Message
Read Message
Read Message
Previous Topic: haiii
Next Topic: S Is For Scandal Is For Sokolich
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Sun Oct 20 23:23:55 GMT 2024

Total time taken to generate the page: 0.04108 seconds