PHP更新数据库记录
程序员文章站
2022-04-27 08:05:07
...
PHP更新数据库记录
//更新记录
$query="insert into chinachaodai (name,theindex)values ('公司','1')";
$result=$mysqli->query($query);
if($result)
{
echo ("返回行数:".$mysqli->affected_rows);
}
else
{
echo("失败了");
}
$mysqli->close();
下一篇: 《代码整洁之道读书笔记》