举例如下:
创建userinfo_update.php页面用于查询用户信息,先显示信息,在修改:
先通过GET获取用户编号查询用户信息:
$sql = "select * from user_info where user_id='".$_GET['userId']."'"
$result = mysql_query($sql,$con)
if($row = mysql_fetch_array($result)){
}
页面效果:
创建update.php文件,用于修改用户信息:
使用到了mysql_affected_rows() 函数返回前一次 MySQL *** 作所影响的记录行数。
//通过post获取页面提交数据信息
$userId = $_POST[userId]
$userName = $_POST[userName]
$userAge = $_POST[userAge]
$sql = "update user_info set user_name='".$userName."',user_age=".$userAge." where user_id='".$userId."'"
mysql_query($sql,$conn)//执行SQL
$mark = mysql_affected_rows()//返回影响行数
$url = "userinf_select.php"
运行结果
创建delete.php文件,完成删除用户信息功能:
$userId = $_GET['userId']
include 'connection.php'
$sql = "delete from user_info where user_id='".$userId."'"
mysql_query($sql,$con)
$mark = mysql_affected_rows()//返回影响行数
if($mark>0){
echo "删除成功"
}else{
echo "删除失败"
}
mysql_close($con)
运行结果:
$sql="update wp_prli_links set url='?' where id = $id "这样不行就换种方式嘛,$url="?"$sql="update wp_prli_links set url='".$url."' where id = $id "
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)