-
Notifications
You must be signed in to change notification settings - Fork 0
/
commentreply.php
33 lines (31 loc) · 1.23 KB
/
commentreply.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
<?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>
<?php
$cid = $_GET["cid"];
$sql = "select * from comment,users where cid = '$cid' and comment.uid = users.uid";
$result = mysql_query($sql);
$row = mysql_fetch_array($result);
echo"<div>";
echo"<table border='1' width='725' cellpadding='0'>";
echo"<tr><th align='left'>".$row["username"]."     ".$row["time"]."</th></tr>";
echo"<tr><td><p>".$row["content"]."</p></td></tr>";
echo"</table>";
echo"</div>";
?>
<form action="commentreplycommit.php" method="post">
<label style="vertical-align:top">回复</label>
<textarea id="reply" name="reply" style="resize:none" cols="94" rows="5">
</textarea>
<br />
<input type="hidden" id="cid" name="cid" value="<?php echo $cid ?>" />
<button class="u-btn" type="submit" name="submit" id="submit">提交</button>
<button class="u-btn" type="reset">重置</button>
<input type="button" onclick="javascript:history.go(-1)" value="取消"/>
</body>
</html>