ob_start(); //============ Start Session และทำการเรียก Function ติดต่อฐานข้อมูล session_start(); require("connect/connect.php"); require("connect/function.php"); //============ อ่านอีเมล์ if($_SESSION["strEmail"] != "") { header("location:."); } //============ ถ้าเลือกสมัครสมาชิก if($_GET["action"]=="Register") { //============ อ่านว่าอีเมล์นี้เคยสมัครหรือยัง $result=select("member","where 1 and Email='".$_POST["txtEmail"]."'"); if($result) { $_POST["txtEmail"]=""; $_POST["txtEmailCon"]=""; echo ""; } else { //============ บันทึกข้อมูลสมาชิก $sql = "insert into member (Email,Password,Name,LastName,Gender,Address,Province,ZipCode,Tel,Fax) Values ('$_POST[txtEmail]','$_POST[txtPass]','$_POST[txtName]','$_POST[txtLastName]','$_POST[rdoGender]','$_POST[txtAddress]','$_POST[txtProvince]','$_POST[txtZipCode]','$_POST[txtTel]','$_POST[txtFax]')"; $dbquery = mysql_query($sql); $_SESSION["strEmail"]=$_POST["txtEmail"]; $_SESSION["strPassword"]=$_POST["txtPass"]; session_write_close(); header("location:finish.php"); } } ?>
|
|||
|