<?php $tests = array( "123456", "123456\n",); foreach($tests AS $test){ $good = preg_match('~^[0-9]+$~', $test); echo '"', $test, '" ', $good ? 'is' : 'is not', ' good<br />';} ?>