Search
 
SCRIPT & CODE EXAMPLE
 

PHP

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";
}
Comment

php odd or even

$num = 34;
if ($num % 2 == 0) {
  print "It's even";
}
Comment

PHP Even Odd Program

<?php  
$number=1233456;  
if($number%2==0)  
{  
 echo "$number is Even Number";   
}  
else  
{  
 echo "$number is Odd Number";  
}   
?>  
Comment

PREVIOUS NEXT
Code Example
Php :: PHP strspn — Finds the length of the initial segment of a string consisting entirely of characters contained within a given mask 
Php :: how to check request method in php 
Php :: php random number routing 
Php :: create random username and password php 
Php :: PHP nl2br — Inserts HTML line breaks before all newlines in a string 
Php :: php add km to longitude 
Php :: php array_intersect_assoc 
Php :: Max() Value And Min() Value 
Php :: fat-free captcha plugin 
Php :: levenshtein (PHP 4 = 4.0.1, PHP 5, PHP 7, PHP 8) levenshtein — Calculate Levenshtein distance between two strings 
Php :: haseeb php code 
Php :: what does the initals of php stand for? 
Php :: Hide products only show assigned products to certain user roles in WooCommerce 
Php :: Yii2 Dynamic Relational, Eager loading 
Php :: he PHP exec() function must be enabled. 
Php :: yii1 anchor tag 
Php :: how to decode json and combine again in php 
Php :: IlluminateValidationRulesRequiredIf 
Php :: how to make diffrent php pages have diffrent styles 
Php :: search php array 
Php :: heroku mysql 
Php :: convert string to int php 
Php :: Target class [AppHttpControllersAdminUserController] does not exist. larvel 8 
Php :: provide difference between interface and abstract class php 
Php :: str_word_count() 
Php :: facade pattern php 
Java :: set size of a jframe 
Java :: java sleep in code 
Java :: how to loop through code 3 times java 
Java :: java reflection get field value 
ADD CONTENT
Topic
Content
Source link
Name
8+8 =