-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhome.php
60 lines (47 loc) · 1.33 KB
/
home.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
52
53
54
55
56
57
58
59
60
<?php include('logic.php'); ?>
<?php
$msg = "";
session_start();
if (isset($_SESSION['eventuser'])) {
$user_name = $_SESSION['eventuser'];
$msg = $user_name . "😀";
}
?>
<!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>Welcome Event</title>
<link rel="stylesheet" type="text/css" href="./css/style.css">
<script type="text/javascript" src="./js/index.js"></script>
</head>
<body>
<div class="headerpage">
<?php include("option.php"); ?>
<?php include("log_sign.php"); ?>
</div>
<div id="containerhome">
<div class="titlehome">
welcome <?php echo (isset($msg)) ? $msg : ''; ?> in our services.
</div>
<div class="parashome">
<span>
<p>
<?php
$filename = './home_content.txt';
$doc = file_get_contents($filename);
echo ($doc);
?>
</p>
</span>
</div>
<br><br>
<div class="img_home">
<img class="img_img_home" src="./img/home.jpg" />
</div>
</div>
<?php include("footer.php"); ?>
</body>
</html>