当前位置:Gxlcms > PHP教程 > 如何修改数据库中内容

如何修改数据库中内容

时间:2021-07-01 10:21:17 帮助过:2人阅读

运行这段代码时存在一定问题,如图。
 修改课题人数不能少于现已选题人数,人数列修改失败!";				echo"";				exit;			}			else			{		    	$query2=mysql_query("update $jiaoshi_table set number='$number1' where id='$id'");				$query3=mysql_query("update $jiaoshi_table set surplus=surplus-($row[sn]-$number1) where id='$id'");				mysql_query("set names 'GB2312'");   				$result1=mysql_query($query3);							}		}		else		{			$query4=mysql_query("update $jiaoshi_table set number='$number1' where id='$id'");			$query5=mysql_query("update $jiaoshi_table set surplus=surplus+($number1-$row[sn]) where id='$id'");			mysql_query("set names 'GB2312'");   			$result2=mysql_query($query5);			   		}				if($result==true)				{				   echo"

修改课题成功!"; echo ""; exit; } else { echo"

修改出错,请返回重新修改

"; echo ""; exit; } ?>


回复讨论(解决方案)

全部是一些没有定义的变量$subject1、$id、$teacher1...

另外,同一条件的update 语句可以写在一起。执行一次就够了。

全部是一些没有定义的变量$subject1、$id、$teacher1...

另外,同一条件的update 语句可以写在一起。执行一次就够了。

那我这样写对不对?

 $query="update $jiaoshi_table set subject='$subject1',teacher='$teacher1',zhicheng='$zhicheng1',specialized='$specialized1' , code='$select',beizhu='$introduction'where id='$id'";   mysql_query("set names 'GB2312'");   $result=mysql_query($query);
我应该在哪怎么定义变量?

上面的语句的对的

你的变量是通过表单提交过来的吧? 那就 $subject1=$_POST['subject1'] ;

extract($_REQUEST); //加上这句
$query="update $jiaoshi_table set subject='$subject1' where id='$id'";
....

extract($_REQUEST); //加上这句
$query="update $jiaoshi_table set subject='$subject1' where id='$id'";
.... 在哪个位置定义变量呢?
是这样定义的 $subject1=$_POST['subject1'] ; 吗?

你贴出的代码的第 7、8 行不是这样吗
$query="update $jiaoshi_table set subject='$subject1' where id='$id'";
把他改成这样
extract($_REQUEST); //加上这句
$query="update $jiaoshi_table set subject='$subject1' where id='$id'";

就可以了,其他都不要动
以后遇到类似的情况都这样做

Notice: Undefined variable: xxx
注意:未定义的变量: xxx

再新的手,也得会借助翻译看懂错误信息!

人气教程排行