📄 comment_list.php
字号:
<script language=javascript>
function commemo(to){
window.open('memo_write.php?to='+to,'na3_memo','scrollbars=yes,width=400,height=400,top=200,left=200')
}
</script>
<?
//////////////////////////////////Look if there is comment
$com_query="select * from $com_table$bd where no=$no order by comno";
$com_result=mysql_query($com_query,$connect);
$check_com=mysql_num_rows($com_result);
if($check_com){
//////////////////////////////////To bring skin top
include"$skin/comment_list_top.php";
//////////////////////////////////loop rounding
while($com_data=mysql_fetch_array($com_result))
{
//////////////////////////////////Processing
$com_data[name]=stripslashes($com_data[name]);
$com_data[memo]=nl2br(stripslashes($com_data[memo]));
$com_data[memo]=http_mail_link($com_data[memo]);
//////////////////////////////////set member icon
if($com_data[id]){
$image_exist=file_exists("member_icon/$com_data[id].gif");
if($image_exist){$com_data[name]="<img src='member_icon/$com_data[id].gif' border=0 align=absmiddle>";}
}
//////////////////////////////////To bring skin middle
include"$skin/comment_list.php";
}
//////////////////////////////////To bring skin bottom
include"$skin/comment_list_bottom.php";
//////////////////////////////////loop end
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -