doutuo6689 2018-04-04 08:59
浏览 78
已采纳

在我的登录通知中回显用户名

How to make a notification that echoes the username of the specific user , not the level of the user

For example the user logins , an alert will pop out and says , welcome customer , what i want is to change the customer to the name of the person.

Thank you very much.

this is my code

<?php
    include('conn.php');
    session_start();
    function check_input($data) {
        $data = trim($data);
        $data = stripslashes($data);
        $data = htmlspecialchars($data);
        return $data;
    }

    if ($_SERVER["REQUEST_METHOD"] == "POST") {
        $username=check_input($_POST['username']);

        if (!preg_match("/^[a-zA-Z0-9_]*$/",$username)) {
            $_SESSION['msg'] = "Username should not contain space and special characters!"; 
            header('location: index.php');
        }
        else{

        $fusername=$username;

        $password = check_input($_POST["password"]);
        $fpassword=md5($password);

        $query=mysqli_query($conn,"select * from `user` where username='$fusername' and password='$fpassword'");

        if(mysqli_num_rows($query)==0){
            $_SESSION['msg'] = "Login Failed, Invalid Input!";
            header('location: index.php');
        }
        else{

            $row=mysqli_fetch_array($query);
            if ($row['access']==1){
                $_SESSION['id']=$row['userid'];
                ?>
                <script>
                    window.alert('Login Success, Welcome Admin!');
                    window.location.href='admin/';
                </script>
                <?php
            }
            elseif ($row['access']==2){
                $_SESSION['id']=$row['userid'];
                ?>
                <script>
                    window.alert('Login Success, Welcome User!');
                    window.location.href='user/';
                </script>
                <?php
            }
            else{
                $_SESSION['id']=$row['userid'];
                ?>
                <script>
                    window.alert('Login Success, Welcome Supplier!');
                    window.location.href='supplier/';
                </script>
                <?php
            }
        }

        }
    }
?>
  • 写回答

2条回答 默认 最新

  • dongre6404 2018-04-04 09:06
    关注

    Let's say you have mentioned username field present in database.

     $row=mysqli_fetch_array($query);
    if ($row['access']==1)
    {
        $_SESSION['id']=$row['userid'];
        $_SESSION['username']=$row['username'];
        ?>
        <script>
            window.alert('Login Success, Welcome Admin!');
            window.location.href='admin/';
        </script>
        <?php
    }
    elseif ($row['access']==2){
        $_SESSION['id']=$row['userid'];
        $_SESSION['username']=$row['username'];
        ?>
        <script>
    
            var username = '<?php echo $_SESSION['username']; ?>';
            var notification_text = "Login Success, Welcome "+username+"!";
            window.alert(notification_text);
            window.location.href='user/';
        </script>
        <?php
    }
    else{
        $_SESSION['id']=$row['userid'];
        $_SESSION['username']=$row['username'];
        ?>
        <script>
            var username = '<?php echo $_SESSION['username']; ?>';
            var notification_text = "Login Success, Welcome "+username+"!";
            window.alert(notification_text);
            window.location.href='supplier/';
        </script>
        <?php
    }
    

    This is how you can access jquery inside PHP and can work on your notifications. P.S - They are not called notification, you can simply call them as an jquery alert.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 关于大棚监测的pcb板设计
  • ¥20 sim800c模块 at指令及平台
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用
  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入
  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计