Home  >  Article  >  php教程  >  PHP更新数据库记录

PHP更新数据库记录

WBOY
WBOYOriginal
2016-06-13 09:15:35887browse

PHP更新数据库记录

  //更新记录

  $query="insert into chinachaodai (name,theindex)values ('公司','1')";

  $result=$mysqli->query($query);

  if($result)

  {

  echo ("返回行数:".$mysqli->affected_rows);

  }

  else

  {

  echo("失败了");

  }

 

  $mysqli->close();

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