- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在尝试让我的用户更新他们的信息,所以第一个问题是,我不断收到此错误:
Notice: Undefined index: new_user_address in D:\xampp\htdocs\Ecommerce1\resetinfo.php on line 27
但我确保它已在我的代码中定义。下一个错误是这样的:
Warning: mysqli_stmt_bind_param(): Number of variables doesn't match number of parameters in prepared statement in D:\xampp\htdocs\Ecommerce1\resetinfo.php on line 70
我不确定这个错误是从哪里来的,但我认为它来自第一个错误。现在我将向您展示代码。
有一段时间我做了我的更新声明——而不是:
$sql = "UPDATE users SET
user_address = '$new_user_address',
user_city = '$new_user_city',
user_country = '$new_user_country',
postal_code = '$new_postal_code'
WHERE id = ?";
我用过:
$sql = "UPDATE users SET
user_address = ?,
user_city = ?,
user_country = ?,
postal_code = ?'
WHERE id = ?";
它正确地将我重定向到我的个人资料页面,但没有更新数据。
这是我的代码:
<?php
session_start();// Initialize the session
// Check if the user is logged in, if not then redirect to login page
if(!isset($_SESSION["loggedin"]) || $_SESSION["loggedin"] !== true){
header("location: login.php");
exit;
}
// Include config file
require_once "dbconfig.php";
$query = "SELECT user_address, user_country, user_city, postal_code FROM users WHERE id ='".$_SESSION['id']."';";
$result = mysqli_query($link, $query);
while ($row = mysqli_fetch_array($result)){
$new_user_address = $row['user_address'];
$new_user_country = $row['user_country'];
$new_user_city = $row['user_city'];
$new_postal_code = $row['postal_code'];
}
$new_user_address_err = $new_user_city_err = $new_user_country_err = $new_postal_code_err = "";
// Processing form data when form is submitted
if($_SERVER["REQUEST_METHOD"] == "POST"){
// Validate new password
if(empty(trim($_POST["new_user_address"]))){
$new_user_address_err = "City is empty.";
} else{
$new_user_address = trim($_POST["new_user_address"]);
}
if(empty(trim($_POST["new_user_city"]))){
$new_user_city_err = "City is empty.";
} else{
$new_user_city = trim($_POST["new_user_city"]);
}
if(empty(trim($_POST["new_user_country"]))){
$new_user_country_err = "Country is empty.";
} else{
$new_user_country = trim($_POST["new_user_country"]);
}
if(empty(trim($_POST["new_postal_code"]))){
$new_posta_code_err = "Postal Code is empty.";
}elseif(strlen(trim($_POST["new_postal_code"])) < 6){
$new_postal_code_err = "Postal Code must have 6 characters.";
} else{
$new_postal_code = trim($_POST["new_postal_code"]);
}
// Check input errors before updating the database
// Prepare an update statement
$sql = "UPDATE users SET
user_address = '$new_user_address',
user_city = '$new_user_city',
user_country = '$new_user_country',
postal_code = '$new_postal_code'
WHERE id = ?";
if($stmt = mysqli_prepare($link, $sql)){
// Bind variables to the prepared statement as parameters
mysqli_stmt_bind_param($stmt, "ssssi", $param_user_address, $param_user_city, $param_user_country, $param_postal_code, $param_id);
// Set parameters
$param_user_address = $new_user_address;
$param_user_city = $new_user_city;
$param_user_country = $new_user_country;
$param_postal_code = $param_postal_code;
$param_id = $_SESSION["id"];
// Attempt to execute the prepared statement
if(mysqli_stmt_execute($stmt)){
// After udpating everythin.
header("location: profile.php");
exit();
} else{
echo "Oops! Something went wrong. Please try again later.";
}
}
mysqli_stmt_close($stmt);
// Close statement
// Close connection
mysqli_close($link);
}
?>
<br><br><br><br>
<div class="container text-white">
<div class="container px-5">
<h1 class="display-2 black-neon text-center" style="font-family: 'Bungee';">Rest your password!
</h1><br><br>
<form action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>" method="post">
<div class="form-group <?php echo (!empty($new_user_address_err)) ? 'has-error' : ''; ?>">
<label>Address</label>
<div class="bg-white d-flex">
<input type="text" class="form-control form-control-lg" name="new_user_city" value="<?php echo $new_user_address; ?>">
<div class="align-items-end"><a class="btn btn-lg disabled" tabindex="-1" role="button" aria-disabled="true">
<span class="oi oi-person" ></span></a></div></div>
<span class="form-text"><?php echo $new_user_address_err; ?></span>
</div>
<div class="form-group <?php echo (!empty($new_user_city_err)) ? 'has-error' : ''; ?>">
<label>City</label>
<div class="bg-white d-flex">
<input type="text" class="form-control form-control-lg" name="new_user_city" value="<?php echo $new_user_city; ?>">
<div class="align-items-end"><a class="btn btn-lg disabled" tabindex="-1" role="button" aria-disabled="true">
<span class="oi oi-person" ></span></a></div></div>
<span class="form-text"><?php echo $new_user_city_err; ?></span>
</div>
<div class="form-group <?php echo (!empty($new_user_country_err)) ? 'has-error' : ''; ?>">
<label>Country</label>
<div class="bg-white d-flex">
<input type="text" class="form-control form-control-lg" name="new_user_country" value="<?php echo $new_user_country; ?>">
<div class="align-items-end"><a class="btn btn-lg disabled" tabindex="-1" role="button" aria-disabled="true">
<span class="oi oi-person" ></span></a></div></div>
<span class="form-text"><?php echo $new_user_country_err; ?></span>
</div>
<div class="form-group <?php echo (!empty($new_postal_code_err)) ? 'has-error' : ''; ?>">
<label>Postal Code</label>
<div class="bg-white d-flex">
<input type="text" class="form-control form-control-lg" name="new_postal_code" value="<?php echo $new_postal_code; ?>">
<div class="align-items-end"><a class="btn btn-lg disabled" tabindex="-1" role="button" aria-disabled="true">
<span class="oi oi-person" ></span></a></div></div>
<span class="form-text"><?php echo $new_postal_code_err; ?></span>
</div>
<input class="btn btn-outline-success btn-lg" type="submit" value="reset">
</form>
</div>
</div>
<br><br><br>
<?php
include_once ("footer.php");
?>
这段代码实际上是这段代码的编辑——
<?php
// Initialize the session
require_once ("header.php");
// Check if the user is logged in, if not then redirect to login page
if(!isset($_SESSION["loggedin"]) || $_SESSION["loggedin"] !== true){
header("location: login.php");
exit;
}
// Include config file
require_once "dbconfig.php";
// Define variables and initialize with empty values
$new_password = $confirm_password = "";
$new_password_err = $confirm_password_err = "";
// Processing form data when form is submitted
if($_SERVER["REQUEST_METHOD"] == "POST"){
// Validate new password
if(empty(trim($_POST["new_password"]))){
$new_password_err = "Please enter the new password.";
} elseif(strlen(trim($_POST["new_password"])) < 6){
$new_password_err = "Password must have atleast 6 characters.";
} else{
$new_password = trim($_POST["new_password"]);
}
// Validate confirm password
if(empty(trim($_POST["confirm_password"]))){
$confirm_password_err = "Please confirm the password.";
} else{
$confirm_password = trim($_POST["confirm_password"]);
if(empty($new_password_err) && ($new_password != $confirm_password)){
$confirm_password_err = "Password did not match.";
}
}
// Check input errors before updating the database
if(empty($new_password_err) && empty($confirm_password_err)){
// Prepare an update statement
$sql = "UPDATE users SET password = ? WHERE id = ?";
if($stmt = mysqli_prepare($link, $sql)){
// Bind variables to the prepared statement as parameters
mysqli_stmt_bind_param($stmt, "si", $param_password, $param_id);
// Set parameters
$param_password = password_hash($new_password, PASSWORD_DEFAULT);
$param_id = $_SESSION["id"];
// Attempt to execute the prepared statement
if(mysqli_stmt_execute($stmt)){
// Password updated successfully. Destroy the session, and redirect to login page
session_destroy();
header("location: login.php");
exit();
} else{
echo "Oops! Something went wrong. Please try again later.";
}
}
// Close statement
mysqli_stmt_close($stmt);
}
// Close connection
mysqli_close($link);
}
?>
<br><br><br><br>
<div class="container text-white">
<div class="container px-5">
<h1 class="display-2 black-neon text-center" style="font-family: 'Bungee';">Rest your password!
</h1><br><br>
<form action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>" method="post">
<div class="form-group <?php echo (!empty($new_password_err)) ? 'has-error' : ''; ?>">
<label>New Password</label>
<div class="bg-white d-flex">
<input type="password" class="form-control form-control-lg" name="new_password" value="<?php echo $new_password; ?>">
<div class="align-items-end"><a class="btn btn-lg disabled" tabindex="-1" role="button" aria-disabled="true">
<span class="oi oi-person" ></span></a></div></div>
<span class="form-text"><?php echo $new_password_err; ?></span>
</div>
<div class="form-group <?php echo (!empty($confirm_password_err)) ? 'has-error' : ''; ?>">
<label>Confirm Password</label>
<div class="bg-white d-flex">
<input class="form-control form-control-lg" type="password" name="confirm_password">
<div class="align-items-end"><a class="btn btn-lg disabled" tabindex="-1" role="button" aria-disabled="true">
<span class="oi oi-person" ></span></a></div></div>
<span class="form-text"><?php echo $confirm_password_err; ?></span>
</div>
<input class="btn btn-outline-success btn-lg" type="submit" value="Login">
</form>
</div>
</div>
<br><br><br>
<?php
include_once ("footer.php");
?>
我希望在我的 sql 更新数据时被重定向到配置文件页面。请帮助我!
最佳答案
试试这个:
$sql = "UPDATE users SET
user_address = ?,
user_city = ?,
user_country = ?,
postal_code = ?'
WHERE id = ?";
把操作顺序改成这样:
// Set parameters
$param_user_address = $new_user_address;
$param_user_city = $new_user_city;
$param_user_country = $new_user_country;
$param_postal_code = $param_postal_code;
$param_id = $_SESSION["id"];
// Bind variables to the prepared statement as parameters
mysqli_stmt_bind_param($stmt, "ssssi", $param_user_address, $param_user_city, $param_user_country, $param_postal_code, $param_id);
关于php - 如何在 PHP 中更新用户帐户信息的多个列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57066594/
我需要将文本放在 中在一个 Div 中,在另一个 Div 中,在另一个 Div 中。所以这是它的样子: #document Change PIN
奇怪的事情发生了。 我有一个基本的 html 代码。 html,头部, body 。(因为我收到了一些反对票,这里是完整的代码) 这是我的CSS: html { backgroun
我正在尝试将 Assets 中的一组图像加载到 UICollectionview 中存在的 ImageView 中,但每当我运行应用程序时它都会显示错误。而且也没有显示图像。 我在ViewDidLoa
我需要根据带参数的 perl 脚本的输出更改一些环境变量。在 tcsh 中,我可以使用别名命令来评估 perl 脚本的输出。 tcsh: alias setsdk 'eval `/localhome/
我使用 Windows 身份验证创建了一个新的 Blazor(服务器端)应用程序,并使用 IIS Express 运行它。它将显示一条消息“Hello Domain\User!”来自右上方的以下 Ra
这是我的方法 void login(Event event);我想知道 Kotlin 中应该如何 最佳答案 在 Kotlin 中通配符运算符是 * 。它指示编译器它是未知的,但一旦知道,就不会有其他类
看下面的代码 for story in book if story.title.length < 140 - var story
我正在尝试用 C 语言学习字符串处理。我写了一个程序,它存储了一些音乐轨道,并帮助用户检查他/她想到的歌曲是否存在于存储的轨道中。这是通过要求用户输入一串字符来完成的。然后程序使用 strstr()
我正在学习 sscanf 并遇到如下格式字符串: sscanf("%[^:]:%[^*=]%*[*=]%n",a,b,&c); 我理解 %[^:] 部分意味着扫描直到遇到 ':' 并将其分配给 a。:
def char_check(x,y): if (str(x) in y or x.find(y) > -1) or (str(y) in x or y.find(x) > -1):
我有一种情况,我想将文本文件中的现有行包含到一个新 block 中。 line 1 line 2 line in block line 3 line 4 应该变成 line 1 line 2 line
我有一个新项目,我正在尝试设置 Django 调试工具栏。首先,我尝试了快速设置,它只涉及将 'debug_toolbar' 添加到我的已安装应用程序列表中。有了这个,当我转到我的根 URL 时,调试
在 Matlab 中,如果我有一个函数 f,例如签名是 f(a,b,c),我可以创建一个只有一个变量 b 的函数,它将使用固定的 a=a1 和 c=c1 调用 f: g = @(b) f(a1, b,
我不明白为什么 ForEach 中的元素之间有多余的垂直间距在 VStack 里面在 ScrollView 里面使用 GeometryReader 时渲染自定义水平分隔线。 Scrol
我想知道,是否有关于何时使用 session 和 cookie 的指南或最佳实践? 什么应该和什么不应该存储在其中?谢谢! 最佳答案 这些文档很好地了解了 session cookie 的安全问题以及
我在 scipy/numpy 中有一个 Nx3 矩阵,我想用它制作一个 3 维条形图,其中 X 轴和 Y 轴由矩阵的第一列和第二列的值、高度确定每个条形的 是矩阵中的第三列,条形的数量由 N 确定。
假设我用两种不同的方式初始化信号量 sem_init(&randomsem,0,1) sem_init(&randomsem,0,0) 现在, sem_wait(&randomsem) 在这两种情况下
我怀疑该值如何存储在“WORD”中,因为 PStr 包含实际输出。? 既然Pstr中存储的是小写到大写的字母,那么在printf中如何将其给出为“WORD”。有人可以吗?解释一下? #include
我有一个 3x3 数组: var my_array = [[0,1,2], [3,4,5], [6,7,8]]; 并想获得它的第一个 2
我意识到您可以使用如下方式轻松检查焦点: var hasFocus = true; $(window).blur(function(){ hasFocus = false; }); $(win
我是一名优秀的程序员,十分优秀!