Y YaSSeR New member Jun 1, 2009 #1 php keeps giving me a parse error on this line if (isset($star) && $star%10=0){ why??
S SignpostMarv Guest Jun 1, 2009 #3 you forgot the extra = a single = is an assignment a double == is an equality check a triple === is a strict equality check e.g. if (isset($star) && $star%10==0){
you forgot the extra = a single = is an assignment a double == is an equality check a triple === is a strict equality check e.g. if (isset($star) && $star%10==0){