in reply to Re: Need a little coding help
in thread Need a little coding help

Thanks a lot man, just one thing, in the avoiding negative:

if($binc1){ $bin1=0; } else{ $bin1=1; }

Shouldn't it be the opposite? Like:

if($binc1){ $bin1=1; } else{ $bin1=0; }

Replies are listed 'Best First'.
Re^3: Need a little coding help
by ikegami (Patriarch) on Nov 25, 2010 at 21:12 UTC
    Fixed.