-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.php
67 lines (58 loc) · 2.19 KB
/
index.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
61
62
63
64
65
<?php
session_start();
?>
<?php include('data.php');?>
<?php include('server.php');?>
<html>
<head>
<title>This is a title</title>
<link href='style.css' rel="stylesheet"/>
<script src="scripts.js"></script>
</head>
<body>
<!-- <p>
<?php
echo "Hello world, this is ".$name
?>
</p>
<ul>
<?php foreach($test_array as $test):?>
<li>Element: <?php echo $test;?></li>
<?php endforeach; ?>
</ul>
<ul>
<?php foreach($test_array2 as $key => $value):?>
<li><?=$key;?> <?=$value;?></li>
<?php endforeach; ?>
</ul> -->
<?php
if(!$_SESSION['isAuthenticated']):
?>
<div>You are not logged in!<?=$_SESSION['isAuthenticated'];?></div>
<h3 id="login_title">Login</h3>
<form id="form_login" method="post" action=<?=$_SERVER['PHP_SELF'];?>>
<input type='text' name='user_name' id='user_name' placeholder='User name' />
<input type='password' name='user_password' id='user_password' placeholder='Enter password'/>
<input type='submit' name='login' id="login" value="Login" />
</form>
<?php else: ?>
<table>
<tr><th>ID</th><th>Name</th><th>Text</th><th>Date</th></tr>
<?php foreach($rows as $row):?>
<tr>
<td><?=$row['id'];?></td>
<td><?=$row['name'];?></td>
<td><?=$row['text'];?></td>
<td><?=$row['date'];?></td>
</tr>
<?php endforeach;?>
</table>
<h3 id="form_title">Add Comment</h3>
<form id="form_comments" method="post" action=<?=$_SERVER['PHP_SELF'];?>>
<input type='text' name='comment_author' id='comment_author' placeholder='Comment author' />
<input type='text' name='comment_text' id='comment_text' placeholder='Enter comment here'/>
<input type='submit' name='comment_save' id="comment_save" value="Save" />
</form>
<?php endif;?>
</body>
</html>