hi, if you want to know how you can determine if a string numeric or no, you can use the is_numeric() function
for example:
<?php
$string=14;
if(is_numeric($string)) echo 'is a number;
else echo 'is not a number';
?>



hope that helps