Answers for "php number multiple of"

PHP
0

check if number is multiple of 3 in php

You can check simply by using below code:
if($num%3==0){
  echo "the number is multiple of 3";
}
Posted by: Guest on June-29-2020
0

php number multiple of

if ($count % 20 != 0)
Posted by: Guest on July-10-2020

Browse Popular Code Answers by Language