sql语句update用来更新mysql数据库中的内容,php直接调用sql语句。
如下面代码:
$link=mysql_connect("localhost","root","toor");
if(!$link)
{
echo "连接数据库错误 " . mysql_error();
die();
}
mysql_selectdb("mydatabase");
$sql="select * from user";
$result=mysql_query($sql,$link);
while($row=mysql_fetch_array($result))
{
echo $row['username'] . " " . $row['password'] . " " . $row['email'] . "
";
}
$sql="update user set password ='helloworld' where username='youthflies'";
mysql_query($sql,$link);
mysql_close($link);
?>
就可以将user表中的pasword字段修改。