-
Notifications
You must be signed in to change notification settings - Fork 0
/
articlebrowse0.php
31 lines (29 loc) · 1001 Bytes
/
articlebrowse0.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
<?php require_once('Connections/weblib.php'); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>评论</title>
</head>
<body>
<form action="commentcommit.php" method="post">
<textarea id="comment" name="comment" style="resize:none" cols="100" rows="10">
</textarea>
<br />
<button class="u-btn" type="submit" name="submit" id="submit">提交</button>
<button class="u-btn" type="reset">重置</button>
<?php
$sql = "select * from comment";
$result = mysql_query($sql);
while($row = mysql_fetch_array($result)){
echo"<div>";
echo"<table border='1' width='725' cellpadding='0'>";
echo"<tr><th align='left'>".$row["uid"]."     ".$row["time"]."</th></tr>";
echo"<tr><td><p>".$row["content"]."</td></p></tr>";
echo"</table>";
echo"</div>";
}
?>
</form>
</body>
</html>