⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 personnel_air.php

📁 十大精典PHP项目开发全程案例+代码
💻 PHP
字号:
<?php
	session_start();
	include "../inc/chec.php";
	include "../conn/conn.php";
	include "../inc/func.php";
?> 
<link href="../css/style.css" rel="stylesheet" />
<script src="../js/client_js.js"></script>
<table width="765" border="0" cellpadding="0" cellspacing="0" style="margin-top:15px; border: 1px;">
	<tr>
		<td height="33" background="../images/list.jpg" id="list" style=" border: inset 1px; "><?php echo read_field($conn,"tb_list","f_name",$_GET[u_id]); ?></td>
	</tr>
	<tr>
		<td align="center" valign="top">
<?
if(isset($_GET[u_id])){
		if($_GET[u_id] == "23"){
?>

<table width="300" border="1" cellpadding="0" cellspacing="0" bgcolor="#DEEBEF" class="big_td">
  <tr>
    <td width="75" height="25" align="center" valign="middle" scope="col">编号</td>
    <td width="75" align="center" valign="middle" scope="col">姓名</td>
    <td width="75" align="center" valign="middle" scope="col">性别</td>
    <td width="75" align="center" valign="middle" scope="col">部门</td>
  </tr>
<?php
	$sqlstr = "select id,u_name,u_sex,u_depart from tb_users";
	$result = mysql_query($sqlstr,$conn);
	while($rows = mysql_fetch_row($result)){
?>
	<tr>
		<td align="center" valign="middle"><?php echo $rows[0]; ?></td>
		<td align="center" valign="middle"><?php echo $rows[1]; ?></td>
		<td align="center" valign="middle"><?php echo $rows[2]; ?></td>
		<td align="center" valign="middle">&nbsp;<?php echo read_field($conn,"tb_depart","d_name",$rows[3]); ?>&nbsp;</td>
	</tr>
<?php
	}
?>
</table>
</td></tr></table>
<?php
		}
	else if($_GET[u_id] == "25"){
			$t_sql = "select * from tb_users where u_user = '".$_SESSION[u_name]."'";
			$t_result = mysql_query($t_sql,$conn);
			$t_rows = mysql_fetch_row($t_result);
?>
<table width="765" border="1" cellpadding="0" cellspacing="0" bgcolor="#DEEBEF" class="big_td">
<form name="form1" method="post" action="personnel_air_chk.php">
  <tr>
    <td width="100" height="25" align="right" valign="middle" scope="col"><span class="STYLE1">*</span>员工昵称:</td>
    <td width="150" height="25" align="left" valign="middle" scope="col"><input name="u_user" type="text" size="10" value="<?php echo $t_rows[1]; ?>" readonly="readonly" /></td>
    <td width="100" height="25" align="right" valign="middle" scope="col"><span class="STYLE1">*</span>姓名:</td>
    <td width="300" height="25" align="left" valign="middle" scope="col"><input type="text" name="u_name" size="15" value="<?php echo $t_rows[3]; ?>" /></td>
  </tr>
  <tr>
    <td width="100" height="25" align="right" valign="middle">性别:</td>
    <td width="150" height="25" align="left" valign="middle"><select name="u_sex">
      <?php
		if($t_rows[4] == "男"){
	?>
      <option value="男" selected="selected">男</option>
      <option value="女">女</option>
      <?php
		}else{
	?>
      <option value="男">男</option>
      <option value="女" selected="selected">女</option>
      </select>
      <?php
		}
	?></td>
    <td width="100" height="25" align="right" valign="middle">出生日期:</td>
    <td width="300" align="left" valign="middle"><input type="text" name="u_birth" size="15" value="<?php echo $t_rows[5]; ?>"  /></td>
  </tr>
  <tr>
    <td width="100" height="25" align="right" valign="middle">E-mail:</td>
    <td width="150" height="25" align="left" valign="middle"><input type="text" name="u_email" size="15" value="<?php echo $t_rows[8]; ?>" /></td>
    <td width="100" height="25" align="right" valign="middle">员工电话:</td>
    <td width="300" height="25" align="left" valign="middle"><input type="text" name="u_tel" size="15" value="<?php echo $t_rows[7]; ?>"  /></td>
  </tr>
  <tr>
    <td height="25" colspan="2" align="center" valign="middle"><input type="hidden" name="id" value="<?php echo $t_rows[0]; ?>" />
      <input name="submit" type="submit" value="修改" />
      <input name="reset" type="reset" value="重置" /></td>
    <td height="25" align="right" valign="middle">地址:      </td>
    <td height="25" align="left" valign="middle"><input type="text" name="u_address" size="40" value="<?php echo $t_rows[6]; ?>" /></td>
  </tr>
</form>
</table>
<?php
	}}
	else{
		echo "<script>alert('连接非法,请重新登录!!');location='../index.php';</script>";
	}
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -