Home > Backend Development > PHP Tutorial > 啊 mysql小白问题,希望能够解答

啊 mysql小白问题,希望能够解答

WBOY
Release: 2016-06-23 13:35:17
Original
1176 people have browsed it

   @mysql_connect("localhost","root","DS130901881")or die("数据库错误");
   @mysql_select_db("project")or die("mysql错误");
   mysql_set_charset("gbk");
     if(!empty($_POST['sub'])){
      $title=$_POST['title'];
      $con=$_POST['con'];
      $sql="insert into `php`(`id`,`title`,`dates`,`contents`)values(null,'$title',now(),'$con')";
      mysql_query($sql);  }
  ?>
  


标题

内容





为什么在我的数据库中没有找到数据啊
谢谢各位大神解答啊


回复讨论(解决方案)

请把 id 设置为自增字段。 或者设置id的值

谢谢大神了啊

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template