当我在mysql中更新一行时,所有其他行都会使用相同的数据进行更新

时间:2017-02-20 13:13:30

标签: php mysql

我似乎在更新mysql中的数据时遇到问题,如果我更新一行所有行都会更新,或者在该行之后的某些行使用与更新的行相同的数据进行更新。 我的问题:

$qry="UPDATE stud_proj
      set 
      title='$projtit',
      yop='$yop',
      proj_defn='$projdef',
      proj_desc='$desc',
      learning='$learn',
      attachments='$file_name',
      link='$dlink',
      tags='$tags',
      categ_id='$cid'
      where proj_id=$pid";

我从表单上的ajax调用中获取项目ID,并从select语句中获取类别ID

$res2=mysqli_query($link,"SELECT * from categ where proj_categ='$pcatg'");

0 个答案:

没有答案