-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
52 lines (51 loc) · 1.5 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
<?php
$xml = simplexml_load_file("board.xml");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>簡易留言板</title>
<style>
.center{
width: 800px;
margin: auto;
}
.message{
width: 800px;
margin: auto;
height: 400px;
border: 3px ridge;
}
button{
height: 50px;
width: 300px;
border-radius: 25px;
font-size: 20px;
}
</style>
</head>
<body>
<h1 style="text-align: center;">簡易留言系統</h1>
<div class="message">
<table border="0">
<?php
$comments = $xml->xpath('/board/comment');
foreach($comments as $i=>$comment)
{
?><tr>
<?php
echo "<td>".$comment->xpath('name')[0] . ": ".$comment->xpath('message')[0] . "</td>";
echo "<td><a href='editMessage.php?id=".$i."'>修改</a> <a href='delete.php?id=".$i."'>刪除</a></td>"
?></tr>
<?php
}
?>
</table>
</div>
<div class="center" style="text-align: center">
<a href="addMessage.html"><button>我要留言( ̄3 ̄)</button></a>
</div>
</form>
</body>
</html>