簡單使用者註冊程式_PHP

來源:互聯網
上載者:User
關鍵字 程式 使用者註冊 簡單 width class
第一步:首先做一個如下頁面。


申請帳號












第二步:註冊執行程式。
mysql_connect("localhost","username","password") /*請修改使用者名稱和密碼*/
or die("無法串連資料庫,請重來");

mysql_select_db("資料庫名")
or die("無法選擇資料庫,請重來");
$query="select id from 資料庫表名 where username='$name'";
/*從資料庫中尋找相同名字的使用者*/
$result=mysql_query($query);
$numrows=mysql_num_rows($result);
if($numrows !=0)

/*如果找到了相同的使用者的話,出現如下提示。*/
{
$temp='已有人註冊此名,請重新選擇名字!';

}

else
{
if ($word != $pass)
{
$temp = "密碼輸入不一致!";
}
else
{
if (!eregi("^[a-z][a-z0-9_.]{3,19}$",$name))
{
$temp = "使用者名稱非法.";
}
else
{
$query="insert into MemberAuth values('0','$name','$word','1','$ask','$answer')"; /*找不到相同的就輸入新的使用者資料*/
mysql_query($query);
$temp = "
關閉視窗";
}
}
}
?>


申請帳號












本人是初學php與mysql,望請各位同盟多加支援。如想執行此程式請到htpp://lyjrich.oso.com.cn註冊便知。或者與我寫信lyjrich@sina.com.


【本文著作權歸作者與奧索網共同擁有,如需轉載,請註明作者及出處】
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.