> If you're getting input for a false value as "false" you should > really use some kind of conditional statement. Yeah... like this: $string = 'false'; $bool = ($string != 'false'); var_dump($bool); -Rob