in reply to Adding and Deleting Upload File name and File

Just a quick tip: instead of
print "<br> Delete this File: $_ <INPUT TYPE=\"checkbox\" NAME=\"files +\" VALUE=\"$_\">\n";
you can do
print qq[<br> Delete this File: $_ <INPUT TYPE="checkbox" NAME="files" + VALUE="$_">\n];

andy "tip of the day" e.