forked from codigoconjuan/PHP_Introduction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
04_conditions.php
51 lines (40 loc) · 1.47 KB
/
04_conditions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Introduction to PHP</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,900&subset=latin-ext" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>Up & Running with PHP</h1>
<div class="code-content">
<?php
$number_1 = 21;
$number_2 = 22;
if($number_1 > $number_2) {
echo "number one is bigger";
} else if($number_1 == $number_2) {
echo "the numbers are equal";
} else {
echo "number two is bigger";
}
echo "<hr>";
if($number_1 != 20) {
echo "no, they're not equal";
} else {
echo "yes, they're equal";
}
echo "<hr>";
$user_logged_in = true;
if($user_logged_in) {
echo "Welcome";
} else {
echo "Please log in";
}
?>
</div>
</div>
</body>
</html>