exc_staf.php
来自「一个很不错的oa系统,简单好用,数据库是用mysql5,所以大家要注意,不要因为」· PHP 代码 · 共 33 行
PHP
33 行
<?php
session_start();
include "../inc/chec.php";
include "../conn/conn.php";
$sqlstr = "select * from tb_superson";
$result = mysql_query($sqlstr,$conn);
?>
<link href="../css/style.css" rel="stylesheet" />
<script src="../js/client_js.js"></script>
<table width="765" border="1" cellpadding="0" cellspacing="0" class="big_td">
<tr>
<td height="33" background="../images/list.jpg" id="list">优秀员工</td>
</tr>
</table>
<table width="765" border="1" cellpadding="0" cellspacing="0" class="big_td">
<?php
while($rows = mysql_fetch_row($result)){
?>
<tr>
<td height="25" width="300"><a href="?cont=<?php echo $rows[3]; ?>"><?php echo $rows[1]; ?> 到 <?php echo $rows[2]; ?>优秀员工</a></td>
<td width="25" align="center" valign="middle"><a href="del_exc_chk.php?id=<?php echo $rows[0] ?>">删除</a></td>
</tr>
<?php
}
?>
<tr>
<td colspan="2" height="200" align="center" valign="middle">
<?php
echo $cont;
?>
</td>
</tr>
</table>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?