Pending Applications");
$num_rows = mysql_num_rows($res);
if( $res && $num_rows > 0 ) {
print("
");
while( $row = mysql_fetch_object($res) ) {
displayApp($row, 0, 0, 0);
}
print("
");
}else {
print("There are no pending applications at this time.");
}
?>