用JS喽。
<form action="<?php echo SECUREURL ?>" method="post" name="Checkout" id="Checkout" onSubmit="return chkfrom()">
<script>
function chkform(){
  if(Checkout.zone_qty.value == "") {
   alert("NOTE:Empty!!");    
   return false;
  }
  //...
  return true;
}
</script>
<?php $sess->hidden_session(); ?>
  <input type="hidden" name="zone_qty" value="<?php echo $zone_qty;?>" />
  <input type="hidden" name="page" value="checkout/confirm" />
  <input type="hidden" name="func" value="checkoutValidateST" />
.
.
.
.
<td>
        <input type="submit" name="Submit" value="Next" />
      </td>
</tr>
</table>
</form>