⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 modipwd.php

📁 八星瓢虫留言本特点:采用PHP+Access数据库实现
💻 PHP
字号:
<?php
/*
*######################################
* eWebEditor v3.80 - Advanced online web based WYSIWYG HTML editor.
* Copyright (c) 2003-2006 eWebSoft.com
*
* For further information go to http://www.ewebsoft.com/
* This copyright notice MUST stay intact for use.
*######################################
*/


require("private.php");

$sPosition = $sPosition."修改用户名及密码";

eWebEditor_Header();
eWebEditor_Content();
eWebEditor_Footer();


function eWebEditor_Content(){
    switch ($GLOBALS["sAction"]){
    case "MODI":
        DoModi();
        break;
    default:
        ShowForm();
        break;
    }
}


function ShowForm(){
    ?>
    <script language=javascript>
    function checklogin() {
        var obj;
        obj=document.myform.newusr;
        obj.value=BaseTrim(obj.value);
        if (obj.value=="") {
            BaseAlert(obj, "新用户名不能为空!");
            return false;
        }
        obj=document.myform.newpwd1;
        obj.value=BaseTrim(obj.value);
        if (obj.value=="") {
            BaseAlert(obj, "新密码不能为空!");
            return false;
        }
        if (document.myform.newpwd1.value!=document.myform.newpwd2.value){
            BaseAlert(document.myform.newpwd1, "新密码和确认密码不相同!");
            return false;
        }
        return true;
    }
    </script>

    <table border=0 cellspacing=1 align=center class=navi>
    <tr><th><?=$GLOBALS["sPosition"]?></th></tr>
    </table>

    <br>

    <table border=0 cellspacing=1 align=center class=form>
    <form action='?action=modi' method=post name=myform onsubmit="return checklogin()">
    <tr>
        <th>设置名称</th>
        <th>基本参数设置</th>
        <th>设置说明</th>
    </tr>
    <tr>
        <td width="15%">新用户名:</td>
        <td width="55%"><input type=text class=input size=20 name=newusr value="<?=htmlspecialchars($_SESSION["eWebEditor_User"])?>"></td>
        <td width="30%"><span class=red>*</span>&nbsp;&nbsp;旧用户名:<span class=blue><?=htmlspecialchars($_SESSION["eWebEditor_User"])?></span></td>
    </tr>
    <tr>
        <td width="15%">新 密 码:</td>
        <td width="55%"><input type=password class=input size=20 name=newpwd1 maxlength=30></td>
        <td width="30%"><span class=red>*</span></td>
    </tr>
    <tr>
        <td width="15%">确认密码:</td>
        <td width="55%"><input type=password class=input size=20 name=newpwd2 maxlength=30></td>
        <td width="30%"><span class=red>*</span></td>
    </tr>
    <tr><td align=center colspan=3><input type=submit name=bSubmit value="  提交  "></a>&nbsp;<input type=reset name=bReset value="  重填  "></td></tr>
    </form>
    </table>

    <?
}

function DoModi(){

    $sNewUsr = toTrim("newusr");
    $sNewPwd1 = toTrim("newpwd1");
    $sNewPwd2 = toTrim("newpwd2");

    if ($sNewUsr == ""){
        GoError("新用户名不能为空!");
    }
    if ($sNewPwd1 == ""){
        GoError("新密码不能为空!");
    }
    if ($sNewPwd1 != $sNewPwd2){
        GoError("新密码和确认密码不相同!");
    }

    $GLOBALS["sUsername"] = $sNewUsr;
    $GLOBALS["sPassword"] = $sNewPwd1;

    WriteConfig();

    ?>
    <table border=0 cellspacing=1 align=center class=navi>
    <tr><th><?=$GLOBALS["sPosition"]?></th></tr>
    </table>

    <br>

    <table border=0 cellspacing=1 align=center class=list>
    <tr>
        <td>登录用户名及密码修改成功!</td>
    </tr>
    </table>
    <?
}

?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -