Answers for "phphow to tell if number is odd"

PHP
4

How to check even or odd number in php

$num = 85;
if($num % 2 == 0){
echo "this is even number";

}else{
echo "this is odd number";
}
Posted by: Guest on August-24-2020

Code answers related to "phphow to tell if number is odd"

Browse Popular Code Answers by Language