PHP更新数据库记录
//更新记录
$query="insert into chinachaodai (name,theindex)values ('公司','1')";
$result=$mysqli->query($query);
if($result)
{
echo ("返回行数:".$mysqli->affected_rows);
}
else
{
echo("失败了");
}
$mysqli->close();
http://www.bkjia.com/PHPjc/953962.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/953962.htmlTechArticlePHP更新数据库记录 //更新记录 $query=insert into chinachaodai (name,theindex)values ('公司','1'); $result=$mysqli-query($query); if($result) { echo (返回行数:.$mysq...