ok you will need to list all the variables in an array eg.
$form_vars[0] = $_POST['hello'];
$form_vars[1] = $_POST['merry'];
$form_vars[3] = $_POST['xmas'];
//and so on
//then you will need a for function
$vars = sizeof($form_vars);
for($i=0; $i<$vars; $i++){
if(!isset($form_vars[$i])){
die("Graceful error message");
}
}