I want to find all muliples of a number in PHP.
I\'m using something like this
if($count != 20 )
to work out if $count
$count
if ($count % 20 != 0) { // $count is not a multiple of 20 }