I am using code igniters form_validation and I was wondering if there was away to validate money for a text box for an example allow 4 numbers and then a period and then 2 numbers.
This what I got so far
regex_match[/^[0-9.]{0,7}+$/]
It works well, but I can enter a number like 100.000, is there anything I can do about it?