-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefine.php
More file actions
40 lines (32 loc) · 1014 Bytes
/
Copy pathdefine.php
File metadata and controls
40 lines (32 loc) · 1014 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="assets/images/logo.png" type="image/gif" sizes="16x16">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Define</title>
</head>
<body>
<?php
// Variable Declare and oparetor start
$number1 = 20;
$number2 = 40;
$sum = $number1 + $number2;
$subtraction = $number1 - $number2;
$multiplication = $number1 * $number2;
$division = $number2 / $number1;
$modulus = $number2 % $number1;
echo "It is Addition value = ".$sum."<br>";
echo "It is Subtraction value = ".$subtraction."<br>";
echo "It is Multiplication value = ".$multiplication."<br>";
echo "It is Division value = ".$division."<br>";
echo "It is Modulus value = ".$modulus."<br><br><br>";
// Variable Declare and oparetor End
// This is Define Area Start
define("RAKIB", "i am a Web Designer and Developer");
define("", value)
echo RAKIB;
// This is Define Area Start
?>
</body>
</html>