Phil Beynon wrote: > All I'm trying to do here is catch any numeric negatives in a form > submission, which in reality shouldn't really ever occur. $value = str_replace('-', '', $value); Also works :) Personally, I'd use abs() though. Regards, Rob...