On 1/11/06, M. Sokolewicz <tularis@xxxxxxx> wrote: > > remember though that > if(!$x) { > echo 'nothing here'; > } > > will also output 'nothing here' when provided with the string '0'! That's because (!$x) means ($x == false) and '0' is false... Gerry