PHP開發 小型論壇教程之註冊-2
建立reg.php 檔案
#本頁是將從註冊頁面傳過來的資料
存放到資料庫裡面
#程式碼如下
alert('用户名已经被注册');location.href='reg.html';"; }else{ $sql="insert into member(username,password,email,log_time)VALUES ('$username','$password','$email','$log_time')"; $que=mysqli_query($conn,$sql); $_SESSION['username']=$username; echo ""; } ?>