Thread: SImple Problem
View Single Post
  #28  
Old 03-20-2007, 02:13 PM
Angel_Light Angel_Light is offline
Varia Developer
Angel_Light's Avatar
Join Date: Nov 2005
Location: Knoxville, TN
Posts: 1,684
Angel_Light is on a distinguished road
Send a message via AIM to Angel_Light Send a message via MSN to Angel_Light
Quote:
Originally Posted by MrAnonymous_P2P View Post
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.
__________________
Deep into the Darkness peering...
Reply With Quote