Quote:
Originally Posted by MrAnonymous_P2P
PHP Code:
if (save[1]=true) {hide;}
|
wouldnt it be
PHP Code:
if (save[1]) {hide;}
Since the if operations checks for true and false or
PHP Code:
if (save[1]==true) {hide;}
since "=" is assign" and "==" is equals.