Ah, I think I know what you're asking for now.. You want to call a template that contains $post[field5] along with some html (table tags) right?
If thats what you mean, instead of using the code that I posted above, use this:
Code:
if ($post[field5]!="") {
eval("\$status = \"".gettemplate("Your_Template_Name")."\";");
} else {
$status="";
}
Change the 'Your_Template_Name' to whatever template you want to show. Then put $status in your postbit where you want it to display. It will only show up if the user has entered something in the field.
Hope that helps.