首页 热点专区 义务教育 高等教育 出国留学 考研考公

关于数据库中的删除操作

发布网友 发布时间:2022-04-24 17:27

我来回答

2个回答

懂视网 时间:2022-05-01 10:08

/*deal_edit.php*/

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <title>编辑处理</title>
</head>
<body>
<?php
include_once"connect.php";

$id=$_POST[‘id‘]; //接受从编辑界面传过来的值。
$name=$_POST[‘name‘];
$sex=$_POST[‘sex‘];
$age=$_POST[‘age‘];
if($_GET[‘ud‘])
{
 $ud=$_GET[‘ud‘];
 $sql="select * from stu where stu_id=$ud";//从数据库中选择将要编辑的学生信息。
 $re=mysql_query($sql) or die(mysql_error());
 if(!mysql_num_rows($re))
 {
 echo "ID wrong";
 }
 $row=mysql_fetch_array($re);
 if(!empty($name)||trim($name)!=‘‘) //判断姓名是否为空
 {
 $sql="update stu set stu_name=‘".$name."‘,stu_id=‘".$id."‘,stu_age=‘".$age."‘,stu_sex=‘".$sex."‘ where stu_id=$id";
 mysql_query($sql) or die(mysql_error());
 // echo "<center>";
 // echo "Edit success!";
 // echo ‘<a href="sy.php"><input name="return" type="button" value="return" ></a>‘;
 // echo "</center>";
 header(‘location:table.php‘);
 mysql_close($conn);
 }
}
else
{
 echo "fail to delete!";
 mysql_error();
}
?>
</body>
</html>

 

数据库删除操作2

标签:

热心网友 时间:2022-05-01 07:16

可以阿,使用关键字count:
str="select count(*) as count1 from ……"

set rs=conn.execute(str)

rs("count1")里面就有数字0。

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com