How to Find Largest Value Between Two Value Using PHP?

How to Expose and Route to a Resource?
How to Expose and Route to a Resource?

आज इस आर्टिकल में हम आपको How to Find Largest Value Between Two Value Using PHP? के बारे में बताएंगे।

Problem:- How to Find Largest Value Between Two Value Using PHP? This is common example.

Solution – Find Largest Value Between Two Value Using PHP

<?php
$a = 10;
$b = 15;
if($a>$b){
 print "$a is largest";
}else{
	print "$b is largest";
}
?>

इसे भी पढ़े –How to Store Multiple Elements per Key in an Array?

Comments

No comments yet. Why don’t you start the discussion?

Leave a Reply

Your email address will not be published. Required fields are marked *