-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselect.php
More file actions
42 lines (32 loc) · 776 Bytes
/
select.php
File metadata and controls
42 lines (32 loc) · 776 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
41
42
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<h2 align="center">查看單號</h2>
<?php
$link_ID = mysql_connect('localhost', 'nuucsie', 'nuucsie');
mysql_select_db('nuucsie');
mysql_query('SET CHARACTER SET UTF8;');
$result = mysql_query("SELECT * FROM list;", $link_ID);
mysql_close($link_ID);
?>
<table border="1">
<?php
while($record = mysql_fetch_array($result))
{
?>
<tr>
<td><?php echo '單號:' . $record[listid] . '<br>'; ?></td>
<td><?php echo '項目:' . $record[item] . '<br>'; ?></td>
<td><?php echo '價錢:' . $record[price] . '<br>'; ?></td>
</tr>
<?php
}
?>
</table>
<form action="index.html" method="POST">
<input type="submit" value="回主頁"><br>
</form>
</body>
</html>