No messages selected.
"; } } else { // Move messages displayPageHeader($mailbox); // lets check to see if they selected any messages if (is_array($msg) == 1) { $j = 0; $i = 0; // If they have selected nothing msg is size one still, but will be an infinite // loop because we never increment j. so check to see if msg[0] is set or not to fix this. while ($j < count($msg)) { if ($msg[$i]) { /** check if they would like to move it to the trash folder or not */ $success = copyMessages($imapConnection, $msg[$i], $msg[$i], $targetMailbox); if ($success == true) setMessageFlag($imapConnection, $msg[$i], $msg[$i], "Deleted"); $j++; } $i++; } if ($auto_expunge == true) expungeBox($imapConnection, $mailbox, $numMessages); echo "Messages are moved.
"; } else { echo "\n


\n"; echo "
No messages selected.
\n"; } } // Log out this session fputs($imapConnection, "1 logout"); ?>