A. 我下載了一個php會員注冊登陸代碼 管理員密碼帳號系統說不對大家幫忙看看那得毛病
這只是一個表單提交,關鍵得看你管理密碼儲存的位置,或者資料庫裡面。
B. php帶有會員注冊 提問 管理員回復的源碼 誰能告訴下 學習當中
不太清楚你要的是什麼樣程序。你是不是要博客程序。。
你也可以去我的站看看http://www.mycode8.com/download/category-31-1.html
看看是不是有你要的。
C. php網站登錄注冊源碼
//login.php 負責處理用戶登錄與退出動作 if(!isset($_POST['submit'])){ exit('非法訪問!');}$username = htmlspecialchars($_POST['username']); $password = MD5($_POST['password']); //包含資料庫連接文件 include('conn.php'); //檢測用戶名及密碼是否正確 $check_query = mysql_query("select uid from user where username='$username' and password='$password' limit 1");
D. 求份php注冊登錄需要邀請碼才能注冊的源碼,要求自己能生成邀請碼,付費也可以。
把邀請碼存在資料庫,注冊的時候查詢一下這個邀請碼存在就可以注冊,不存在就不能注冊。最好加兩個欄位一個被邀請的號碼,一個自己的邀請碼
E. php代碼 基於web的會員管理系統
1.無非就是會員的增刪改查操作,建立的php文件,最好是放在同一個文件夾下,以便統一管理和維護。
2.頁面的話,你可以參考一下別人做的比較好的網站作為參考。
F. 誰在DW中用html+php做過用戶注冊的,求源碼
我剛好幫別人做了一個簡單的,索性一起給你吧
<form action="?act=regster" method="post">
<p>用戶注冊</p>
<p>用戶名:
<input type="text" name="username" id="username">
</p>
<p>密碼:
<input type="text" name="password" id="password">
</p>
<p>
<input type="submit" name="button" id="button" value="注冊">
</p>
</form>
<?php
if($_GET["act"]=="regster"){
$username=$_POST["username"];
$password=md5($_POST["password"]);
mysql_query("insert into user(username,password)values('$username', '$password')");
echo"注冊成功";
}
?>
G. 跪求簡單的php用戶注冊源碼
<?php
include 'conn.php';
if($_POST['submit']){
$sql = "INSERT INTO admin (Aid,Aname,Apass) values ('','$_POST[Aname]','$_POST[Apass]')";
mysql_query($sql);
echo $sql;
}
?>
<script type="text/javascript">
function regcheck(){
if(regform.Aname.value==""){
alert("用戶名不得為空");
regform.Aname.focus();
return false;
}
if(regform.Apass.value==""){
alert("密碼不得為空");
regform.Apass.focus();
return false;
}
}
</script>
<form action="zhuceyeA.php" name="regform" method="post" onsubmit="return regcheck()">
注冊管理員<br>
用戶名:<input type="text" name="Aname">
密碼:<input type="password" name="Apass">
<input type="submit" name="submit" value="注冊">
</form>
//我也是初學者 大四 這個代碼是我自己練手做的 資料庫很簡單 ID 用戶名 密碼(明文顯示,為了簡便起見) 高手不要笑話我。。。。
H. php 用戶注冊源碼
<html>
<head>
<title>用戶注冊</title>
</head>
<body>
<strong>用戶注冊</strong>
<form action="reg.php" method="post">
用戶名稱:<input type="text" name="user"><br>
您的密碼:<input type="password" name="pass"><br>
確定密碼:<input type="password" name="pass2"><br>
<input type="submit" name="submit" value="注冊">
</form>
</body>
</html>
<?php
include ('conn.php'); //這里是您配置的資料庫
if($_POST[submit]){
//判斷用戶名不低於字數
$struser=strlen($_POST[user]);
if($struser <= 4){
echo "<script language=javascript>alert('注冊請輸入5位數以上');history.go(-1);</script>";
exit;
}
//判斷用戶是否存在
$users=$_POST[user];
$result=mysql_query("select * from manage where user='$users'");
$row=mysql_fetch_array($result);
if($_POST[user]==$row[user]){
echo "<script language=javascript>alert('啊!這個名字有人注冊啦!');history.go(-1);</script>";
exit;
}
//判斷用戶密碼兩次輸入正確
if($_POST[pass]!=$_POST[pass2]){
echo "<script language=javascript>alert('親,別耍我啦,兩次密碼怎麼能輸入不一樣呢?');history.go(-1);</script>";
exit;
}
$_POST[pass]=md5($_POST[pass]);
$sql=mysql_query("insert into manage(id,user,pass)
VALUES('','$_POST[user]','$_POST[pass]')
");
if($sql){
echo "<script language=javascript>alert('親,注冊成功!');history.go(-1);</script>";
}
else {
echo "<script language=javascript>alert('對不起,親!注冊失敗咯!');history.go(-1);</script>";
}
exit;
}
mysql_close($con)
?>
我自己寫的 很簡單,100%適合新人。加密了密碼,利用的是MD5