<?php
require_once('db_fns.php');
//提取数据
function get_ifo_1($username)
{
//extract from the database all the URLs this user has stored
$conn = db_connect();
$result = $conn->query( "select *
from ifo
where number = '$number'");
if (!$result)
return false;
//create an array of the URLs
$url_array = array();
for ($count = 1; $row = $result->fetch_row(); ++$count)
{
$url_array[$count] = $row[0];
}
return $url_array;
}
//验证是否填写完整
function filled_out($form_vars)//检查表单完整性
{
// test that each variable has a value
foreach ($form_vars as $key => $value)
{
if (!isset($key) || ($value == ''))
return false;
}
return true;
}
// 向数据库添加新数据
function add_ifo($number,$name,$xingbie,$age,$mingzu,$peiou_name,$peiou_age,$peiou_job,$school,$by_time,$zhuanye,$bumen,$zhiwei)
{
$valid_user = $_SESSION['valid_user'];
$conn = db_connect();
$result = $conn->query("select * from info
where number='$number'");
if ($result && ($result->num_rows>0))
throw new Exception('该编号已被占用 请重新输入.');
if (!$conn->query( "insert into info values
('$number', '$name', '$xingbie', '$age','$mingzu')"));
elseif (!$conn->query( "insert into peiou values
('$number', '$peiou_name', '$peiou_age', '$peiou_job')"));
elseif (!$conn->query( "insert into xueli values
('$number', '$school', '$by_time', '$zhuanye')"));
elseif (!$conn->query( "insert into job values
('$number', '$bumen', '$zhiwei')"))
throw new Exception('数据输入失败.');
return true;
}
//查找数据
function search_info()
{
$searchtype=$_POST['searchtype'];
$searchterm=$_POST['searchterm'];
$searchterm= trim($searchterm);
//if (!$searchtype || !$searchterm)
// {
// echo '您好 请您填写完整的数据';
// exit;
//}
//db_connect();
if (!get_magic_quotes_gpc())
{
$searchtype = addslashes($searchtype);
$searchterm = addslashes($searchterm);
}
@ $db = new mysqli('localhost', 'root', 'direnai1314', 'company');
if (mysqli_connect_errno())
{
echo 'Error: Could not connect to database. Please try again later.';
exit;
}
$query ="
SELECT *
FROM info i,peiou p,xueli x ,job j
WHERE ".$searchtype." like '%".$searchterm."%'".
" AND i.number=j.number AND j.number=x.number AND x.number=p.number AND p.number=i.number AND j.number=p.number AND i.number=x.number";
$result = $db->query($query);
$num_results = $result->num_rows; ?>
<?php echo '<p>符合条件的员工有'.$num_results.'个</p>';
?><table width="778" border="0" cellpadding="0"
cellspacing="1" bgcolor="#000000">
<tr bgcolor="#FFFFFF">
<th>编号</th>
<td>姓名</td>
<td>名族</td>
<td>年龄</td>
<td>性别</td>
<td>配偶姓名</td>
<td>配偶年龄</td>
<td>配偶职业</td>
<td>毕业院校</td>
<td>毕业时间</td>
<td>专业</td>
<td>职位</td>
<td>所在部门</td>
</tr>
<?php for ($i=0; $i <$num_results; $i++)
{
?><tr bgcolor="#FFFFFF"><?php
$row = $result->fetch_assoc();
?><td><?php
echo stripslashes($row['number']);
?></td><?php
?><td><?php
echo stripslashes($row['name']);
?></td><?php
?><td><?php
echo stripslashes($row['mingzu']);
?></td><?php
?><td><?php
echo stripslashes($row['age']);
?></td><?php
?><td><?php
echo stripslashes($row['xingbie']);
?></td><?php
?><td><?php
echo stripslashes($row['peiou_name']);
?></td><?php
?><td><?php
echo stripslashes($row['peiou_age']);
?></td><?php
?><td><?php
echo stripslashes($row['peiou_job']);
?></td><?php
?><td><?php
echo stripslashes($row['school']);
?></td><?php
?><td><?php
echo stripslashes($row['by_time']);
?></td><?php
?><td><?php
echo stripslashes($row['zhuanye']);
?></td><?php
?><td><?php
echo stripslashes($row['zhiwei']);
?></td><?php
?><td><?php
echo stripslashes($row['bumen']);
?></td><?php
echo '</p>';
}
?> </table><?php
?><table>
<tr>
<td><button type="submit" onclick="javascript:window.print();">打印本页</button>
</td>
</tr>
</table><?php
$result->free();
$db->close();
}
//编辑数据
function edit_info()
{$number=$_POST['number'];
if (!$number)
{
echo 'You have not entered search details. Please go back and try again.';
exit;
}
if (!get_magic_quotes_gpc())
{
$number = addslashes($number);
}
@ $db = new mysqli('localhost', 'root', 'direnai1314', 'company');
if (mysqli_connect_errno())
{
echo 'Error: Could not connect to database. Please try again later.';
exit;
}
$sql="select * FROM info where number='$number' ";
$result = $db->query($sql);
$num_results = $result->num_rows;
if($num_results>0){
$row = $result->fetch_assoc();
?>
<fieldset style="border:0px ">
<form method="POST" action="update_info.php">
<table bgcolor='#cccccc' >
<tr>
</tr>
<tr>
<td>编号(唯一标示符<br/>不能修改):</td>
<td><input name="number" type="text" value="<?php echo $row['number'];?>"> </td>
</tr>
<tr>
<td>姓名:</td>
<td><input name="name" type="text" value="<?php echo $row['name'];?>"> </td>
</tr>
<tr>
<td>年龄:</td>
<td><input name="age" type="text" value="<?php echo $row['age'];?>"> </td>
</tr>
<tr>
<td>性别:</td>
<td><input name="xingbie" type="text" value="<?php echo $row['xingbie'];?>"> </td>
</tr>
<tr>
<td>名族:</td>
<td><input name="mingzu" type="text" value="<?php echo $row['mingzu'];?>"> </td>
</tr>
<tr><td>
<input type="submit" name="submit" value="确认基本信息修改" class="button">
</td></tr>
</table>
</form>
</fieldset>
<?php
}
else
echo '<br/>未找到相应用户,请查证编号<br/>';
$sql="select * FROM peiou where number='$number' ";
$result = $db->query($sql);
$num_results = $result->num_rows;
?><b>以下为编号为<?php echo $number ?>的婚姻信息:</b>
<?php
if($num_results>0){
$row = $result->fetch_assoc();
?>
<fieldset style="border:0px ">
<form method="POST" action="update_info2.php">
<table bgcolor='#cccccc'>
<tr>
<td>编号(唯一标示符<br/>不能修改):</td>
<td><input name="number" type="text" value="<?php echo $row['number'];?>"> </td>
</tr>
<tr>
<td>配偶姓名:</td>
<td><input name="peiou_name" type="text" value="<?php echo $row['peiou_name'];?>"> </td>
</tr>
<tr>
<td>配偶年龄:</td>
<td><input name="peiou_age" type="text" value="<?php echo $row['peiou_age'];?>"> </td>
</tr>
<tr>
<td>配偶职业:</td>
<td><input name="peiou_job" type="text" value="<?php echo $row['peiou_job'];?>"> </td>
</tr>
<tr><td>
<input type="submit" name="submit" value="确认婚姻信息修改" class="button"></td></tr>
</table>
</form>
</fieldset>
<?php
}
else
echo '<br/>未找到相关信息,请查证编号<br/>';
$sql="select * FROM xueli where number='$number' ";
$result = $db->query($sql);
$num_results = $result->num_rows;
?><b>以下为编号为<?php echo $number ?>的学历信息:</b>
<?php
if($num_results>0){
$row = $result->fetch_assoc();
?>
<fieldset style="border:0px ">
<form method="POST" action="update_info3.php">
<table bgcolor='#cccccc'>
<tr>
<td>编号(唯一标示符<br/>不能修改
direnai1314
- 粉丝: 0
- 资源: 1
最新资源
- 博途S7-1200主站与S7-200从站实现RS485通讯程序 S7-200可以当作一个仪表
- C#、C++分别开发的OPC DA CLIENT软件. 1、枚举服务器名称; 2、连接服务器以后枚举出TAG; 3、根据TAG名称自动读取服务器数据; 4、图片内有OPC SERVER和CLIENT实
- python-workspace.zip.005
- 龙门上下料样本程序,四轴 用台达AS228T和台达触摸屏编写 注意软件是用台达新款软件ISPSOFT ,借鉴价值高,程序有注释
- 一款window下的串口监视抓包工具
- 欧姆龙CP1H与3台力士乐VFC-x610变频器通讯程序 功能:原创程序,可直接用于现场程序 欧姆龙CP1H的CIF11通讯板,实现对3台力士乐VFC-x610变频器 设定频率,控制正反转,读取实际
- dp111113333
- CV-密集人群图像数据集(5800张图片).rar
- 福特汽车主观评价规范,性能开发参考,英文原版直译,评价条目、规则描述非常细致 包含平顺舒适性,转向,操稳,NVH,制动,加速感,驾驶性等等性能,并详细描述了评价的准备工作 评价条目细分至第四级,共
- 三菱FX3S两轴标准程序,XZ两轴,包含轴点动,回零,相对与绝对定位,只要弄明白这个程序,就可以非常了解整个项目的程序如何去编写,从哪里开始下手,可提供程序问题解答,程序流程清晰明了,注释完整
- MATLAB代码:考虑P2G与碳捕集机组的多能微网低碳经济调度 关键词:碳交易 阶梯碳交易 碳捕集 多能微网 低碳调度 仿真平台:MATLAB+yalmip+cplex 主要内容:代码主要做的是一个
- 本程序采用matlab编写,主要是实现电流注入型牛拉法 除此之外,本人还编写了很多种关于潮流计算的程序,主要有牛拉法,前推回代法,以还有相和三相潮流计算程序
- 智能门锁架构图,供大家参考
- 三菱FX3U六轴标准程序,程序包含本体3轴控制,扩展3个1PG定位模块,一共六轴 程序有轴点动控制,回零控制,相对定位,绝对定位 另有气缸数个,一个大是DD马达控制的转盘,整个是转盘多工位流水作业
- 批量登录到远程Linux服务器检查服务器时间差的shell
- MATLAB电动车七自由度整车模型 MATLAB Simulink电动车转弯制动abs模型asr转弯制动防抱死abs模型+模糊控制算法+七自由度整车模型+纵向运动+侧向运动+横摆运动+四轮魔术公式+四
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
- 1
- 2
- 3
前往页