PHP更新数据库记录

 

//更新记录
$query="insert into chinachaodai (name,theindex)values ('公司','1')";
$result=$mysqli->query($query);
if($result)
{
 echo ("返回行数:".$mysqli->affected_rows);
}
else
{
 echo("失败了");
}
$mysqli->close();

你可能感兴趣的:(数据库,PHP,query,insert)