gpt4 book ai didi

php - 使用 php 更新个人资料

转载 作者:行者123 更新时间:2023-11-29 21:03:31 24 4
gpt4 key购买 nike

我正在做项目,我想在单击时使用 php mysql 更新用户配置文件在更新按钮上,它显示第 17 行有错误。请帮助查找错误。

    <?php
session_start();
if(!isset($_SESSION["n"]))
{
header("location:error.php");
}
if(isset($_POST["s"]))
{

$name=$_POST["nm"];
$lname=$_POST["lnm"];
$address=$_POST["ad"];
$u=$_SESSION["un"];

$query = "SELECT * FROM signup";

$result=mysqli_query($result,$query) or die(mysqli_connect_error());
$i=0;
while($row=mysqli_fetch_array($result))
{
$roll[$i]=$row['rollno'];
$i++;
}
$total_elmt=count($roll);
require_once("vars.php");
$conn=mysqli_connect(host,uname,pass,db) or die(mysqli_connect_error());


$query="update signup set name='$nm',lname='$lnm',address='$ad' where user_id='$value'";
$execute=mysqli_query($conn,$query);$r=mysql_affected_rows();
mysqli_close($conn);
$msg="Your information is submitted successfully";
}
?>

最佳答案

  1. 您需要先打开数据库才能运行选择查询。

    将此行移至顶部:

    $conn=mysqli_connect(host,uname,pass,db) 或 die(mysqli_connect_error());

  2. 您使用的mysqli_query函数是错误的。应该是

    $result=mysqli_query($conn,$query) 或 die(mysqli_connect_error());

关于php - 使用 php 更新个人资料,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37019475/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com