帐户系统w / js,html& PHP

时间:2016-07-27 22:21:52

标签: javascript php html web

我需要帮助才能在php中创建一个帐户系统!它将为每个用户创建一个包含一些数据的新文档,这是我尝试的内容:

PHP:

//> Profile Creation <//
if($_CREATEPROFILE) {
$uname = $_CREATEPROFILE['uname'];
$pword = $_CREATEPROFILE['pword'];
$email = $_CREATEPROFILE['email'];

$path = 'profiles/' + $uname + ".txt";

if(file_exists('profiles/' + $uname)) {
    //Run If Profile Already Created
    echo("<script>cantCreate();</script>");
} else {
    //Profile Creation
    $handle = fopen("profiles/" + $uname,"a");

}
}

    //> Profile Logging In <//
    if($_LOGIN) {

}

HTML:

<form action="" method="CREATEPROFILE">
    <input type="text" id="uname" name="uname" placeholder="Username">
    <input type="text" id="pword" name="pword" placeholder="Password">
    <input type="text" id="email" name="email" placeholder="EMail">

    <center><div id="accountStatus-Signup" class="accountStatus-Signup">You Have Not Done A Account Scan Yet!</div></center>

    <input type="submit" id="submit" name="submit" value="Sign Up">
</form>

使用Javascript:

<script>
function cantCreate() {
document.getElementById("accountStatus-Signup").innerHTML = "<h2 style=\"color: red;\">Sorry! But That Username Is Unadvaible!";
}
</script>

请向我解释我的错误!谢谢你的帮助!

1 个答案:

答案 0 :(得分:0)

CREATEPROFILE不是有效的表单方法。我想你正在尝试使用POST方法。改为使用全局$_POST[]来捕获数据。要检查表单是否已提交,请执行if(isset($_POST['uname']))而不是if($_POST)。那是你的主要问题。虽然我建议在尝试单独写一些内容之前先做一些教程。