分享一下在数据库新增字段后,如何更新数据库。我的方法是直接上大于数据条数的循环,以ID为索引。下边就是一个代码,大家可参考下。
<?php
require(‘conn.php’);#配置文件调用,必须的
for($i=1;$i<=1000;$i++){
$result=mysql_query(“select * from search_history where id=$i”);
$data=mysql_fetch_array($result);
$urlcode=urlencode($data[searchword]);
mysql_query(“update search_history set urlcode=’$urlcode’ where id=’$i'”);
}
?>