Home  >  Article  >  Backend Development  >  What to do if php cannot insert data

What to do if php cannot insert data

藏色散人
藏色散人Original
2020-08-18 10:36:453648browse

Solution to the problem that php cannot insert data: first check whether the sql statement can run normally in the Mysql command line; then use the "mysql_query" method to check the error message; and finally reset the encoding method.

What to do if php cannot insert data

Recommended: "PHP Video Tutorial"

Solution to PHP connection to Mysql but unable to insert Data into the database

When writing a web page, under certain circumstances, mysql_connect may connect to the database, and mysql_select_db selects the correct table, but it cannot use mysql_query to insert data into the database. .

There are many situations when encountering this situation. First, you have to check whether your sql statement can run normally in the Mysql command line and whether it can complete the function. If it can run normally, it means that your sql statement is correct. Then use

  $res = mysql_query($sql, $con);
   if($res){
       echo "插入成功";
   }
    else{
     echo mysql_error();
    }

to solve the problem based on the error message. If mysql_error() cannot be displayed; it may be a coding error. Add mysql_query( "set names GBK"); add your own mysql encoding after the names.

The above is the detailed content of What to do if php cannot insert data. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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