Hello guys and Phil...
Just would like to make sure if I'm doing the thing right and if so - what I am doing wrong then... ( ok not funny..)
The problem is: I have an array of added members in a table and I added a checkbox to each member so that the user could delete the member when the checkbox is checked next to it. So..the code within the while PHP loop is:
[/code]
$mem_dir_add_pic .= "<a href='see_member.php?id=$user_id'><img src='members/avatar/avatar.jpg' width='41' height='60' border='1' align='left' hspace='3' vspace='5' style='border-color:black' alt='' title='' style='float:left'/><span class='style2' style='float:left;margin-top:67px;margin-left:-46px'> ".$user." <input type='checkbox' name='del_mem' value='".$user_id."' /></span></a>";
[/code]
But when below I add the code:
The values from the checkboxes are not received...
Regards for any comments..
Just would like to make sure if I'm doing the thing right and if so - what I am doing wrong then... ( ok not funny..)
The problem is: I have an array of added members in a table and I added a checkbox to each member so that the user could delete the member when the checkbox is checked next to it. So..the code within the while PHP loop is:
[/code]
$mem_dir_add_pic .= "<a href='see_member.php?id=$user_id'><img src='members/avatar/avatar.jpg' width='41' height='60' border='1' align='left' hspace='3' vspace='5' style='border-color:black' alt='' title='' style='float:left'/><span class='style2' style='float:left;margin-top:67px;margin-left:-46px'> ".$user." <input type='checkbox' name='del_mem' value='".$user_id."' /></span></a>";
[/code]
But when below I add the code:
Code:
//remove members
$sel_rem = mysql_query("SELECT * FROM `members`");
$mem_check = $_POST['del_mem'];
print $mem_check;
if ($mem_check == $user_id) {
$proceed = mysql_query("DELETE FROM `members` WHERE friend_id='$user_id' AND user_id='$uid' ");
}
Code:
HTML code:
<form
name="remove" action="remove_members.php" method="post"><input type="submit" name="submit" value="go" /></form>
The values from the checkboxes are not received...
Regards for any comments..