what's wrong with this php line ?

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){
 
Back
Top