What is the proper code to have input field left blank or numeric only?? I know this is an elementary for most of you, but I am just getting my feet wet...

Code:
  if (!is_numeric($a_item1))
	 {
    $error = true;
      $messageStack->add('silent', 'Leave empty, or enter only numbers in the input box!');
}
Thank you.