ok im crap at maths!!!!
how can detect if a multiple of 3?
if (a number == multiple of 3 ) {do whatever...}
cheers J
Hi,
if (($num%3) == 0) { // multiple of 3 }
Thomas