Search This Blog

if-else-if statement or if else if statement in php

<?php

$sno=101;
$name='hari kishore';
$marks=300;

if($sno==101)
  {
     if($name=='hari kishore')
        {
           if($marks>=300)
               {
                  echo 'you are second class';

                }
             else
                {
                    echo 'you are not second class';
                 }
         }
       else 
         {
               echo 'you are not hari kishore';
          }
    }

?>

output : you are second class

Share Links

Related Posts Plugin for WordPress, Blogger...