include "../common/auth_db/config.inc"; include "../common/auth_db/gongji.cfg"; include "../common/auth_db/function.inc"; $com_no = $_GET["com_no"]; if(!$com_no){ $com_no = $_POST["com_no_search"]; } $query="SELECT * FROM community WHERE uid='$number' limit 1"; $result=mysqli_query($db, $query); if(!$result) { error("QUERY_ERROR"); exit; } $row=mysqli_fetch_row($result); $my_uid=$row[0]; $my_fid=$row[1]; $my_name=$row[2]; $my_email=$row[3]; $my_subject=$row[4]; $my_comment=$row[5]; $my_signdate=date("Y-m-d H:i",$row[6]); $my_ref=$row[7]; $my_thread=$row[8]; $my_filename=$row[9]; $my_filesize=(int)($row[10]/1000); $my_passwd=$row[11]; $my_ip=$row[12]; $my_com_no=$row[13]; $my_subject=stripslashes($my_subject); $my_comment=stripslashes($my_comment); $my_subject=htmlspecialchars($my_subject); $savedir="../admin/communitybbs/community_files"; ?>
| ||||||||||||||||||||