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 you don't want zero to be excluded:
if ($count % 20 != 0 || $count == 0)