PHP企业人事工资管理系统范文
name='$XM',bmbm='$BMBM',zwbm='$ZWBM',password='$MM' WHERE id='$GWYH';"; //更改数据 if(!$str){
echo "can not update data"; exit;}
$result=mysql_query($str,$sql); //送出查询字符串 if($result==0){
echo "can not query "; exit;}
mysql_close(); //关闭数据库
echo "数据修改成功!<a href=modify2.php>返回</a>"; } ?>
(c)、职员信息删除:在删除界面中,首先输入被删除者的帐号(ID)和姓名(NAME),点击“确定”后;程序delete.php根据ID提交到数据库查询是否有此人,然后将其删除,根据提示信息继续操作。
返回
程序实现:delete.php //职员信息删除
<!---Deleteuser php script begins here---> <?php
if($ID and $NAME){ //判断输入信息,若正确则连接数据库 do{require("../config.php");}while($sql==" "); //删除users表中某一信息
$deleteresult="DELETE FROM users where NAME='$NAME' AND ID='$ID'"; $result=mysql_query($deleteresult, $sql); if(!result){
echo "can not query"; exit;}
$affected_rows=mysql_affected_rows( $sql); //删除aducat表中某一信息
$deleteresult ="DELETE FROM aducat WHERE ID='$ID'"; $result=mysql_query($deleteresult, $sql); if(!result){