Hi,
I got a problem with a mail script that I'm building.
When the user views the inbox, there is a checkbox infront of every mail, like hotmail.com. If the user want to delete some mails, he clicks the boxes and submit the form!
The problem is, I need know what boxes that have been checked and put it into a loop that deletes the mail.
Eg. If the user checks mail1, mail2, mail15 and mail18 - and submits the form - I need to get the values into a loop - somthin like:
while($delete){
imap_delete ($inbox, $delete);
Do something to find the next value
}
Help 😕