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>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container{
max-width: 80%;
background-color: cyan;
margin: auto;
padding: 23px;
}
</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
Post a Comment