Forum Moderators: coopster
But when I recall the number I format it as currency with
setlocale(LC_MONETARY, 'en_US');
$number = money_format('%.0n', $number);
and enter it back in to the form in currency format.
Now when the user resubmits that form I need to trim all the non int char so that I have only 0-9 values since I am storing it as int.
I can't figure out how to do that.