📄 cgx.php
字号:
<?php session_start();include("../conn.php");?>
<table width="520" border="0">
<tr align="center">
<td align="center">标题</td>
<td align="center">收件人</td>
<td align="center">时间</td>
<td align="center">查看</td>
<td align="center">删除</td>
</tr>
<?php
$quer="select * from hw_dxx where fjr='$_SESSION[username]' and zt=2";
$result=mysql_query($quer);
echo mysql_error();
if($result){
while ($myrow=mysql_fetch_array($result)){
?>
<tr>
<td align="center"><a href="fnr.php?bt=<?php echo urlencode($myrow[biaoti]);?>&id=<?php echo $myrow[id];?>" target="_parent"><?php echo $myrow[biaoti];?></a></td>
<td align="center"><?php echo $myrow[sjr];?></td>
<td align="center"><?php echo $myrow[shijian];?></td>
<td align="center"><a href="fnr.php?bt=<?php echo urlencode($myrow[biaoti]);?>&id=<?php echo $myrow[id];?>" target="_parent"><?php echo "查看" ?></a>
</td>
<td align="center">
<a href="delete.php?sc=<?php echo urlencode(草稿箱);?>&id=<?php echo $myrow[id];?>">删除</a>
</td>
</tr>
<?php }
} ?>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -