|
|
|
ผมขอโค้ด การยืนยันผ่านทางอีเมล์ ตอนที่เราสมัครสมาชิกอ่ะครับ + Mysql ฟิลด์ที่เก็บ ยืนยันอีเมล์ |
|
|
|
|
|
|
|
โค้ดหน้า Insert member
Code (PHP)
<?
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>บันทึกข้อมูลสมาชิก</title>
</head>
<body>
<?php
$Username=$_POST[User];
$Password=$_POST[Pass];
$Firstname=$_POST[Firstname];
$Lastname=$_POST[Lastname];
$Date=$_POST[Date];
$Month=$_POST[Month];
$Year=$_POST[Year];
$Age=$_POST[Age];
$ID_card=$_POST[ID_card];
$Sex=$_POST[Sex];
$Address=$_POST[Address];
$Province=$_POST[Province];
$Zipcode=$_POST[Zipcode];
$Email=$_POST[Email];
$Mobile=$_POST[Mobile];
$ID_Status=$_POST[Status];
$Id_Member=$_POST[ID_Member];
$datebd=$Date."-".$Month."-".$Year;
$checkdate=$d.$m;
include_once('dbconnect.php'); // เชื่อม database
$sql="INSERT into member (ID_Member,Username,Password,Firstname,Lastname,Birthday,Age,ID_card,Sex,Address,Province,Zipcode,
Email,Mobile,ID_Status) values ('$Id_Member','$Username','$Password','$Firstname','$Lastname','$datebd','$Age','$ID_card','$Sex','$Address','$Province','$Zipcode','$Email','$Mobile','$ID_Status')";
mysql_query("SET NAMES utf8");
$result=mysql_db_query($db,$sql);
echo"<script>alert('บันทึกข้อมูลเรียบร้อยครับ')</script>";
echo "<meta http-equiv='refresh' content='1;url=index.php'>";
?>
</body>
</html>
*****************************************************************************************************************************************************
อยากให้พี่วินช่วยผมหน่อยครับ ผมอยากรู้ว่าเพิ่มโค้ดตรงส่วนไหนของ หน้า Insert_member ครับ ผมลองทำแล้ว งง มากครับ ขอบคุณล่วงหน้านะครับ พี่วิน
Tag : PHP, CakePHP
|
|
|
|
|
|
Date :
2012-12-11 19:33:06 |
By :
ponsau |
View :
826 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$strSQL = "INSERT INTO member (Username,Password,Name,Email,Status,SID,Active) VALUES ('".$_POST["txtUsername"]."',
'".$_POST["txtPassword"]."','".$_POST["txtName"]."' ,'".$_POST["txtEmail"]."','USER','".session_id()."','No')";
$objQuery = mysql_query($strSQL);
$Uid = mysql_insert_id();
echo "Register Completed!<br>Please check your email to activate account";
$strTo = $_POST["txtEmail"];
$strSubject = "Activate Member Account";
$strHeader = "Content-type: text/html; charset=windows-874\n"; // or UTF-8 //
$strHeader .= "From: [email protected]\nReply-To: [email protected]";
$strMessage = "";
$strMessage .= "Welcome : ".$_POST["txtName"]."<br>";
$strMessage .= "=================================<br>";
$strMessage .= "Activate account click here.<br>";
$strMessage .= "https://www.thaicreate.com/activate.php?sid=".session_id()."&uid=".$Uid."<br>";
$strMessage .= "=================================<br>";
$strMessage .= "ThaiCreate.Com<br>";
$flgSend = mail($strTo,$strSubject,$strMessage,$strHeader);
Go to : PHP Member Register and Email Activation ยืนยันการสมัครสมาชิกทางอีเมล์
|
|
|
|
|
Date :
2012-12-11 20:16:51 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|