php - 下拉菜单返回显示 "Please Select"并且未出现失败/成功消息

标签 php html mysql

我的以下代码有两个问题。

 <?php

$validSubmission = isset($_POST['resetpass']) && $_POST['students'] && $_POST['newpass'] && $_POST['confirmpass'];


$sql = "SELECT StudentUsername, StudentForename, StudentSurname FROM Student ORDER BY StudentUsername";

$sqlstmt = $mysqli->prepare($sql);

$sqlstmt->execute();

$sqlstmt->bind_result($dbStudentUsername, $dbStudentForename, $dbStudentSurname);

$students = array(); // easier if you don't use generic names for data 

$studentHTML = "";
$studentHTML .= '<select name="students" id="studentsDrop">' . PHP_EOL;
$studentHTML .= '<option value="">Please Select</option>' . PHP_EOL;

$outputstudent = "";

while ($sqlstmt->fetch())
{
    $student   = $dbStudentUsername;
    $firstname = $dbStudentForename;
    $surname   = $dbStudentSurname;

    if (!$validSubmission && isset($_POST['students']) && $student == $_POST['students'])
    {
        $studentHTML .= "<option value='" . $student . "' selected='selected'>" . $student . " - " . $firstname . " " . $surname . "</option>" . PHP_EOL;
    }
    else
    {
        $studentHTML .= "<option value='" . $student . "'>" . $student . " - " . $firstname . " " . $surname . "</option>" . PHP_EOL;
    }

}


$studentHTML .= '</select>';

$errormsg = (isset($errormsg)) ? $errormsg : '';

if (isset($_POST['resetpass']))
{
    //get the form data
    $studentdrop = (isset($_POST['students'])) ? $_POST['students'] : '';
    $newpass     = (isset($_POST['newpass'])) ? $_POST['newpass'] : '';
    $confirmpass = (isset($_POST['confirmpass'])) ? $_POST['confirmpass'] : '';

    //make sure all data was entered
    if ($studentdrop != "")
    {
        if ($newpass)
        {
            if (strlen($newpass) <= 5)
            {
                $errormsg = "Your Password must be a minimum of 6 characters or more";
            }
            else
            {
                if ($confirmpass)
                {
                    if ($newpass === $confirmpass)
                    {
                        //Make sure password is correct
                        $query = "SELECT StudentUsername FROM Student WHERE StudentUsername = ?";
                        // prepare query
                        $stmt  = $mysqli->prepare($query);
                        // You only need to call bind_param once
                        $stmt->bind_param("s", $username);
                        // execute query
                        $stmt->execute();
                        // get result and assign variables (prefix with db)
                        $stmt->bind_result($dbStudentUsername);
                        //get number of rows
                        $stmt->store_result();
                        $numrows = $stmt->num_rows();

                        if ($numrows == 1)
                        {
                            //encrypt new password
                            $newpassword = md5(md5("93w" . $newpass . "ed0"));

                            //update the db

                            $updatesql = "UPDATE Student SET StudentPassword = ? WHERE StudentUsername = ?";
                            $update    = $mysqli->prepare($updatesql);
                            $update->bind_param("ss", $newpassword, $username);
                            $update->execute();

                            //make sure the password is changed

                            $query = "SELECT StudentUsername, StudentPassword FROM Student WHERE StudentUsername = ? AND StudentPassword = ?";
                            // prepare query
                            $stmt  = $mysqli->prepare($query);
                            // You only need to call bind_param once
                            $stmt->bind_param("ss", $username, $newpassword);
                            // execute query
                            $stmt->execute();
                            // get result and assign variables (prefix with db)
                            $stmt->bind_result($dbStudentUsername, $dbStudentPassword);
                            //get number of rows
                            $stmt->store_result();
                            $numrows = $stmt->num_rows();

                            if ($numrows == 1)
                            {
                                $errormsg = "<span style='color: green'>Student " . $student . " - " . $firstname . " " . $surname . " has been Registered</span>";

                            }
                            else
                            {
                                $errormsg = "An error has occured, the Password was not Reset";
                            }
                        }
                    }
                    else
                    {
                        $errormsg = "Your New Password did not Match";
                    }
                }
                else
                {
                    $errormsg = "You must Confirm your New Password";
                }
            }
        }
        else
        {
            $errormsg = "You must Enter your New Password";
        }

    }
    else if ($studentdrop == "")
    {
        $errormsg = "You must Select a Student";
    }

} 

我正在尝试创建一个休息密码页面,管理员可以在其中重置学生的密码。

问题 1:

在我的代码中,我想做的是,如果出现 php 验证消息($errormsg 之一出现,但显示成功消息的 $errormsg 除外),然后 students下拉菜单仍应显示在提交表单后选择的选项。现在这适用于用户将文本输入留空的所有验证消息,但唯一不起作用的验证消息是用户没有输入新密码和确认密码的匹配密码。如果$errormsg = "Your New Password did not Match"; 发生然后学生下拉菜单返回到 Please Select选项。它怎么会回到Please Select每次出现此验证消息时都会选择该选项,如果发生此验证,我如何才能使所选学生保持选中状态?

问题 2:

如果我成功输入所有详细信息并提交,它不会执行插入,也不会显示失败消息 $errormsg = "An error has occured, the Password was not Reset"; 或成功消息 $errormsg = "<span style='color: green'>Student " . $student . " - " . $firstname . " ". $surname . " has been Registered</span>"; ,为什么会这样?我知道 UPDATE 语句是正确的,因为我在 phpmyadmin 中对此进行了测试。

最佳答案

$username(第 72 行及之后)从未设置。我认为这应该来自“$studentdrop”?

这意味着您更新 where StudentUsername == '',这将失败。

帮助您调试:

1. Turn on warning and notices in the error handler for writing code ( error_reporting(E_ALL); ) as it will reveal problems like this
2. As opposed to constantly counting the rows, you can save time in that the bind_result/store_value won't work unless you got a result. So you can check that value you get in bind_result - and if you had checked that `$dbStudentUsername == $username` in line 78, then it would have also thrown a wobbly at that stage.
3. When you've done the "update", you can check the number of "affected rows"; if this > 0 then the password has been updated; no need for a secondary DB query.

希望对你有帮助

关于php - 下拉菜单返回显示 "Please Select"并且未出现失败/成功消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13617652/

相关文章:

php - PHP 图片上传问题

php - 文件上传 Ajax PHP

javascript检测手指移过div

mysql - 将 Django 从 Postgres 迁移到 MySQL 时,我会遇到任何令人讨厌的冲击吗?

mysql - 如何在 MySQL 中指定复合唯一约束

html - 如何使主要内容位于页面中间并去除空白?

Php Laravel 很多 if in 种子

php - 如何使用 mysqli 函数获取结果中指定字段的名称

php - Symfony2 : FOSUserBundle - Single firewall, 多个登录表单/入口点

javascript - 如何在另一个页面中包含html页面?