What's new

Closed Php if...elseif...else condition

Status
Not open for further replies.

RNA30

Honorary Poster
Joined
May 7, 2015
Posts
192
Reaction
103
Points
140
Age
25
PHP:
<?php
   $a =10;$b=5;
   if($a>=$b){
      echo "The value of a is greater than b";
   }elseif(($a-$b)==$b){
      echo "The value of a-b is equal b";
   }else{
      echo "The conditions are false";
   }

?>

This is the basic If...elseif...else Condition in PHP for beginners.
 
may basic tutorial ka po ba para sa assembly language ? :eek:
#NewbieHere <~~~
 
Medyo limot ko na assembly language. haba kc ng codings don eh.
yung tutorial lang po on how to send command lines to openvpn.exe. [ simple gui kumbaga po ] :D
 
Status
Not open for further replies.
Back
Top