-
Notifications
You must be signed in to change notification settings - Fork 0
/
task4.php
43 lines (41 loc) · 984 Bytes
/
task4.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
body {
font-size: 20px;
font-family: monospace;
line-height: 1.5;
}
</style>
</head>
<body>
<?php
$variable = 8;
echo "Value is now $variable.";
echo "<br>";
$variable += 2;
echo "Add 2. Value is now $variable.";
echo "<br>";
$variable -= 4;
echo "Subtract 4. Value is now $variable.";
echo "<br>";
$variable *= 5;
echo "Multiply by 5. Value is now $variable.";
echo "<br>";
$variable /= 3;
echo "Divide by 3. Value is now $variable.";
echo "<br>";
$variable ++;
echo "Increment value by one. Value is now $variable.";
echo "<br>";
$variable --;
echo "Decrement value by one. Value is now $variable.";
?>
</body>
</html>