查询更新和变量PHP

时间:2014-05-25 08:13:48

标签: php mysql sql

我尝试获取文件的结果,然后将其放入查询中:

文件内容:test9

当我echo $content时,它会test9

但是查询中的问题是它给出了内容的最后一个字符:

update code set code ='9' where id_prof= 1

PHP代码:

if(is_file($chemin))

{  include("../../connexion/connexion.php");
    $connexion = new class_connect();
       $cn = $connexion->connect(null);
        $content = readfile($chemin);
    echo $content;

      $id_prof = $_SESSION["id_prof"];
      $query = $cn->prepare("update code set code ='$content' where id_prof= $id_prof ");
      print_r($query);
//        $query->execute();
}

数据库中的表格代码如下:

  

代码:TEXT:500,

     

id_prof:INT:50

请帮帮我,谢谢你。

0 个答案:

没有答案