php數據庫怎么做注冊,如何用php創建數據庫

php+mysql 在原有數據庫下注冊新會員

$sql=EOT

成都創新互聯公司主要從事網頁設計、PC網站建設(電腦版網站建設)、wap網站建設(手機版網站建設)、響應式網站建設、程序開發、網站優化、微網站、微信小程序開發等,憑借多年來在互聯網的打拼,我們在互聯網網站建設行業積累了豐富的成都網站建設、網站制作、網站設計、網絡營銷經驗,集策劃、開發、設計、營銷、管理等多方位專業化運作于一體。

INSERT INTO `sbd_members` uname,password,point,email)VALUES (".$_POST['uname']."','".$_POST['password']."','".$_POST['point']."','".$_POST['email']."');

EOT;

mysql_query($sql);記得所有數據前面addslashes一下防止mysql注入

php+mysql怎么做登錄注冊

首先得到提交的數據

鏈接數據庫,查詢數據庫,查詢username 和pwd

提交的username 和 pwd? 跟數據庫查詢的username 和pwd做對比,

都相等那就是登陸成功

?php

mysql_connect('localhost','root','123');

mysql_select_db('lx');

mysql_query("SET?CHARACTER?SET?utf8");

mysql_query("SET?NAMES?utf8");

//數據庫lx?表user??字段id?username??pwd

//用md5加密,可以自己試試????

if(isset($_POST['user'])$_POST['tijiao']?==?'success'){

$query?=?mysql_query("select?pwd?from?user?where?username?=?'".$_POST['user']."'");

$num?=?mysql_num_rows($query);

if($num??0?){

while($info?=?mysql_fetch_array($query)){

if($info['pwd']?==?md5($_POST['pwd'])){

echo?'登陸成功';

}else{

echo?'登陸失敗';????

}

}

}else{

echo?'登陸失敗';

}

}

?

form?action=""?method="get"/

table?border="0"?cellspacing="0"?cellpadding="0"?

tr

td?class="fieldKey"?width="30%"用戶名:/td

td?class="fieldValue"?width="100%"input?type="text"?name="user"?//td

/tr

trtd?height="10"/td/tr

tr

td?class="fieldKey"密碼:/td

td?class="fieldValue"input?type="password"?name="pwd"?//td

/tr

/table

input?type="hidden"?name="tijiao"?value="success"?/

input?type="submit"?value="登陸"/

/form

如何建造整個php注冊登錄數據庫系統?

是不懂做要用到數據庫的網站嗎?那樣的話。

網上有很多配置PHP數據庫的教程的。

可以搜一下。

用PHP做登陸注冊頁面

登錄頁:login.php

?php

include("conn.php");

$username=$_POST['name'];

$password=$_POST['password'];

$yanzheng=$_POST['yanzheng'];

if(isset($_POST['submit']))

{

$sql=("select username,password from member where username='$username' and password='$password'") or die("sql語句執行失敗");

//print_r($sql);

$ar=mysql_query($sql);

if($ar)

{

if($row=mysql_fetch_array($ar))

{

session_start();

if($_POST["yanzheng"])

{

if($yanzheng!=$_session[pic]||$yanzheng=="")

{

echo "驗證碼輸入有誤";

exit;

}

if($yanzheng==$_session[pic])

{

header("location:index.php");

}

}

}

else

{

echo "用戶名或密碼錯誤";

}

}

}

?

form action="login.php" method="post"

table border=1 align=center width=500 height=300 bgColor=#DFFFDF bordercolor=#fffbec

tr

td colspan=2 align=center用戶登錄/td

/tr

tr

td用戶姓名:/td

tdinput type="text" name="name" id="name"http://td

/tr

tr

td用戶密碼:/td

tdinput type="password" name="password" id="password"http://td

/tr

tr

td驗證碼:/td

tdinput type="text" name="yanzheng" id="yanzheng"/

img src="yanzheng1.php" width="50" height="30"/img

/td

/tr

tr

td colspan=3 align=center

input type="submit" name="submit" value="登錄"/

input type="reset" name="reset" value="重置"/

a href="register.php"注冊/a

/td

/tr

/table

/form

注冊頁:register.php

?php

include("conn.php");

if(isset($_POST['submit'])$_POST['submit']) {

if($_POST['username']=='')

{

echo "用戶名不能為空";

exit();

}

if($_POST['password']=='')

{

echo "密碼不能為空";

exit();

}

if($_POST['realpass']!=$_POST['password'])

{

echo "兩次密碼輸入不一致";

exit();

}

$sql="insert into member(username,real_name,password,email,headimg) values('$_POST[username]','$_POST[username]','$_POST[password]','$_POST[email]','')";

$ar=mysql_query($sql);

if($ar)

{

header("location:index.php");

}

else

{

echo mysql_error();

}

}

?

body

form action="register.php" method="post"

table border=1 align=center width=500

tr

td height=40 bgColor=#DFFFDF colspan=2會員注冊 [a href="login.php"返回登錄頁/a]/td

/tr

tr

td height=40 bgColor=#fffbec 會員ID/td

tdinput type="text" name="username" id="username"http://td

/tr

tr

td height=40 bgColor=#fffbec密碼/td

tdinput type="password" name="password" id="password"http://td

/tr

tr

td height=40 bgColor=#fffbec確認密碼/td

td

input type="password" name="realpass" id="realpass"/

/td

/tr

tr

td height=40 bgColor=#fffbecEMAIL/td

tdinput type="text" name="email" id="email"/

/tr

tr

td height=40 bgColor=#fffbec/td

tdinput type="submit" name="submit" value="注冊"/input type="reset" value="重置"/td

/tr

/table

/form

/body

主頁顯示:index.php

?php

include("conn.php");

function cutstr($str,$cutleng)

{

$str = $str; //要截取的字符串

$cutleng = $cutleng; //要截取的長度

$strleng = strlen($str); //字符串長度

if($cutleng$strleng)return $str;//字符串長度小于規定字數時,返回字符串本身

$notchinanum = 0; //初始不是漢字的字符數

for($i=0;$i$cutleng;$i++)

{

if(ord(substr($str,$i,1))=128)

{

$notchinanum++;

}

}

if(($cutleng%2==1)($notchinanum%2==0)) //如果要截取奇數個字符,所要截取長度范圍內的字符必須含奇數個非漢字,否則截取的長度加一

{

$cutleng++;

}

if(($cutleng%2==0)($notchinanum%2==1)) //如果要截取偶數個字符,所要截取長度范圍內的字符必須含偶數個非漢字,否則截取的長度加一

{

$cutleng++;

}

return substr($str,0,$cutleng);

}

?

html

head

script type="text/javascript"

function All(e, itemName)

{

var aa = document.getElementsByName(itemName);

for (var i=0; iaa.length; i++)

aa[i].checked = e.checked; //得到那個總控的復選框的選中狀態

}

function Item(e, allName)

{

var all = document.getElementsByName(allName)[0];

if(!e.checked) all.checked = false;

else

{

var aa = document.getElementsByName(e.name);

for (var i=0; iaa.length; i++)

if(!aa[i].checked) return;

all.checked = true;

}

}

/script

/head

?php

include("conn.php");

if(isset($_POST['del']))

{

$mm = $_POST["selected"];

$id =implode(",",$mm);

$sql = "delete from forums where id in(".$id.")";

//echo $sql;

$result=mysql_query($sql);

echo $result?"刪除成功":"刪除失敗";

}

?

table style="BORDER-BOTTOM-WIDTH: 1px; BORDER-COLLAPSE: collapse" cellSpacing=0 cellPadding=0 width=600 align=center border=1 bordercolor=#ddddff

tr align=middle

td height=40 bgColor=#DFFFDF colspan=3論壇列表/td

/tr

tr

td colspan=3a href="login.php" style="float:right"[退出系統]/aa href="add_forum.php" style="float:right"[添加論壇]/a/td

td/td

/tr

tr align=middle

td height=40 bgColor=#DFFFDF width=80狀態/td

td height=40 bgColor=#DFFFDF論壇/td

td height=40 bgColor=#DFFFDF最后更新/td

/tr

?php

$sql="select * from forums";

$result=mysql_query($sql);

$num=mysql_num_rows($result);

if($num0)

{

while($row=mysql_fetch_array($result)){

?

tr align=middle

td bgColor=#fffbecinput type="checkbox" name="selected" value="1"http://td

td height=50 bgColor=#fffbec width=300

?php

echo "diva href=\"forums.php?F=".$row['ID']."\"".$row['forum_name']."/a/div";

echo cutstr($row['forum_description'],24);//最多顯示24個字節,12個字,多余部分用省略號代替

echo "……";

?

/td

td height=50 bgColor=#fffbecdiv?php echo $row['last_post_time']."by".$row['last_post_author']?/div/td

/tr

?php

}

}

else

{

echo "tr bgColor=#fffbectd colspan=3對不起,論壇尚在創建中……/td/tr";

}

?

tr

td colspan=3 input type="checkbox" name="selected" value="1" onclick="All(this,'selected')"/全選/不全選/td

/tr

tr

tdinput type="button" name="del" id="del" value="刪除選中項"/

?php

?

/td

/tr

/table

/html

數據庫你就自己建,望采納~

如何用php及mysql來實現登錄與注冊功能

登錄就是查詢數據庫表中是否有這一條用戶信息,

注冊就是插入一條新的用戶信息

php 實現簡單的注冊頁面 并把注冊信息插入到 mysql 數據庫中

注冊頁面:reg.html

form action="reg.php" method="POST"

table

trtd用戶名:/tdtdinput type="username" size="20"/td/tr

trtd密碼:/tdtdinput type="userpass" size="20"/td/tr

trtd確認密碼:/tdtdinput type="ruserpass" size="20"/td/tr

trtd郵箱:/tdtdinput type="email" size="50"/td/tr

trtd電話:/tdtdinput type="telphone" size="20"/td/tr

trtdinput type="Submit" value="注冊"/td/tr

/table

/form

接收頁面:reg.php

%php

$db = mysql_connect("localhost", "root", "12345");

mysql_select_db("dataname", $db);

mysql_query("insert into tablename(username, userpass, email, telphone) values('$_POST[username]', '$_POST[userpass]', '$_POST[email]', '$_POST[telphone]')");

echo "注冊成功";

%

文章題目:php數據庫怎么做注冊,如何用php創建數據庫
瀏覽路徑:http://m.kartarina.com/article46/heieeg.html

成都網站建設公司_創新互聯,為您提供品牌網站制作網站設計公司自適應網站網站策劃關鍵詞優化網站建設

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

小程序開發
主站蜘蛛池模板: 精品无码人妻一区二区三区不卡| 白嫩少妇激情无码| 亚洲精品无码中文久久字幕| 2021无码最新国产在线观看| 深夜a级毛片免费无码| 日韩国产精品无码一区二区三区| 日韩精品人妻系列无码专区| 国产午夜无码片在线观看影院| 欧洲精品无码成人久久久| 中文字幕丰满乱子无码视频| 亚洲AV综合色区无码一二三区| 国产在线观看无码免费视频| 亚洲av纯肉无码精品动漫| 亚洲AV无码码潮喷在线观看| 亚洲精品无码日韩国产不卡av| 国产a级理论片无码老男人| 无码人妻精品一区二区三区9厂| 在线观看免费无码视频| 亚洲av无码国产精品色在线看不卡 | 亚洲成a∧人片在线观看无码| 中文字幕无码免费久久| 人妻无码久久中文字幕专区| 丰满少妇人妻无码专区| 精品久久久久久久无码| 国产爆乳无码视频在线观看| 国产成人无码精品久久久性色| 一本一道中文字幕无码东京热 | 久久精品无码专区免费| 日产无码1区2区在线观看| 亚洲日韩国产二区无码| 久久久久久精品无码人妻| 性无码免费一区二区三区在线| 国产精品99精品无码视亚| 亚洲色中文字幕无码AV| 日韩精品无码免费专区午夜| 中国少妇无码专区| 无码国产福利av私拍| 无码成人一区二区| 毛片免费全部播放无码| 久久久久成人精品无码中文字幕| 久久成人无码国产免费播放|