If, Else and Else If Statements

 <!DOCTYPE html>

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Php Tuts</title>
</head>
<style>
*{
    margin0;
    padding0;
    box-sizingborder-box;

}
.container{
    max-width80%;
    background-colorcyan;
    marginauto;
    padding23px;
}
</style>

<body>
    <div class="container">
    <h1>Let's Learn About PHP</h1>
    Your Party Status is Here :
    <br>
    <?php
    $age = 7;
    if($age>16){
        echo "You Can Go To Party";
    }
    elseif($age==7){
        echo "You Are 7 years old";
        
    } 
    else{
        echo "You Can Not Go To Party";
    }


    ?>
    </div>
</body>
</html>


Comments

Popular posts from this blog

Adding Comments