My problems are that, I want to use a function to test if the form input is a number or numeric string.
"To test if a variable is a number or a numeric string (such as form input, which is always a string), you must use is_numeric()."
As the php.net note, using the is_numeric().
But is_numeric() rejects 1,000.00 these kind values. And I want these values, 1000,00 to be considered as a number and return true.
And I want an "offical" clean codes approach used by professionals, due to this will be used in my codes all over the sites.
Thanks.