Hi,
You're right, [MAN]is_numeric[/MAN] must be used on strings(form inputs). However, i decided to use [MAN]ctype_digit[/MAN] instead because it will reject '-' and '.' , which is what i wanted for an integer. so my condition statement for an integer >0 is
if( ctype_digit($_POST['input_number_sets']) && ($_POST['input_number_sets'] > 0) )
Thanks for your help,
Chuck