Hi
You can try this. Hope this helps you.
On your first page you are reteriving the email.
<form name="somefomr" method="get" action="nextpage">
Here Put form method=get
So here your dynamic checkboxes and email are reterived here.
Now Submt button.
When you submit it takes the checkbox values to next page . So here you want to show the email selected .
while(list($key, $val) = each($HTTP_GET_VARS))
// here $val is your checkbox value
{
$query = select your email and reterive them here and create dynamic table for email
}
You can see the mail you selected in previous page here.
And here on this page you can create a submit button which will link to deletemail page
Chanderjit