Jump to content

checkbox mail delete system not working out.....


zhahaman2001

Recommended Posts

well i have a mailing system on my website and i want it so my users while in their inbox can check each message they want deleted and click a delete button to delete it here was m idea of how to do this
(this isnt all my code but this is just to give you an idea of how i was trying to do it)
(id is a number)



//[INBOX]
$temp = mysql_query("select * from messages where owner='$user'");
while ($mail = mysql_fetch_array($temp)) {
      print "Delete<input type='checkbox' name='$mail[id]'>";
}

//[DELETE MESSAGES]
$temp = mysql_query("select * from messages where owner='$user'");
while ($mail = mysql_fetch_array($temp)) {
      if(${mail[id]} == "on"){
            mysql_query("delete from messages where id='$mail[id]'
      }
}



but ${mail[id]}  dosnt hold anything can someone tell me what im doing wrong and how to fix it
thanks...
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.