|
|
|
สอบถาม session_id และ การ insert ลง DB ค่ะ ติด 2 ตัวนี้ค่ะ |
|
|
|
|
|
|
|
Code (PHP)
session_start();
$dbhost = "localhost";
$dbusername = "root";
$dbpassword = "";
$dbname = "url";
$mysqli = new mysqli ($dbhost, $dbusername, $dbpassword, $dbname);
$Uid = mysqli_insert_id($mysqli);// ???????
echo "Register Completed!<br>Please check your email to activate account";
require_once('class.phpmailer.php');
$mail = new PHPMailer();
$mail->IsHTML(true);
$mail->IsSMTP();
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = "ssl"; // sets the prefix to the servier
$mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server
$mail->Port = 465; // set the SMTP port for the GMAIL server
$mail->Username = "[email protected]"; // GMAIL username
$mail->Password = "123456789"; // GMAIL password
$mail->From = "[email protected]"; // "[email protected]";
//$mail->AddReplyTo = "[email protected]"; // Reply
$mail->FromName = "test"; // set from Name
$mail->Subject = "Activate Member Account Thaipostweb9";
$mail->Body = " Welcome : ".$_POST["txtName"]."<br> =================================<br>
Activate account click here.<br> http://localhost:8080/activate.php?sid=".session_id()."&uid=".$Uid."<br>
=================================<br>
code ข้างบน ไม่รู้ว่าตรง session_id() ทำไมมันเหมือนเดิมตลอด ค่ะ หรือว่าเป็นแบบนี้ถูกแล้ว
ตามรูปเนียค่ะ
และก็ที่ติดอีกที่หนึ่ง คือ insert date ลง ฐานข้อมูล ค่ะ อยากให้ เพิ่มลง ตรงตำแหน่ง Username ที่ชื่อว่า test อะค่ะ
from.php
Code (PHP)
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link rel="stylesheet" media="all" type="text/css" href="jquery-ui.css" />
<link rel="stylesheet" media="all" type="text/css" href="jquery-ui-timepicker-addon.css" />
<script type="text/javascript" src="jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="jquery-ui.min.js"></script>
<script type="text/javascript" src="jquery-ui-timepicker-addon.js"></script>
<script type="text/javascript" src="jquery-ui-sliderAccess.js"></script>
</head>
<body>
<form name="form1" method="post" action="savedate_data.php">
<tr>
<td bgcolor="#CCCCCC"> Date Start </td>
<td><script type="text/javascript">
$(function(){
$("#datestart").datepicker({
dateFormat: 'yy-mm-dd'
});
});
</script>
<input type="text" name="datestart" id="datestart" value="" /> </td>
</tr>
<tr>
<td bgcolor="#CCCCCC"> Date End </td>
<td><script type="text/javascript">
$(function(){
$("#dateend").datepicker({
dateFormat: 'yy-mm-dd'
});
});
</script>
<input type="text" name="dateend" id="dateend" value="" /> </td>
<input type="submit" name="Submit" value="Save">
</form>
</tr>
<?php
function DateDiff($strDate1,$strDate2)
{
return (strtotime($strDate2) - strtotime($strDate1))/ ( 60 * 60 * 24 ); // 1 day = 60*60*24
}
?>
<?php
$strDate2= date('Y-m-d',strtotime('+1 month'));//ใช้ add date
$strDate1 = date('Y-m-d',strtotime("now"));
$diff = DateDiff($strDate1,$strDate2);
echo " Time remain = $diff days";
?>
</body>
</html>
savedate_data.php
Code (PHP)
<?php
$dbhost = "localhost";
$dbusername = "root";
$dbpassword = "";
$dbname = "url";
$mysqli = new mysqli ($dbhost, $dbusername, $dbpassword, $dbname);
$keyword="test";
$strSQL = "INSERT INTO member WHERE Username like '%".$keyword."%' (startpack,endpack) VALUES ('".$_POST["datestart"]."','".$_POST["dateend"]."') ";
$objQuery = $mysqli->query($strSQL);
echo "<div style=\"font-size:30pt;\">Save data Completed!</div><br>";
echo "Strat= ".$_POST["datestart"]." and End =".$_POST["dateend"]."";
mysqli_close($mysqli);
?>
ลอง insert ตามนี้ข้อมูลยังไม่เข้าค่ะ รบกวนดูให้หน่อยค่ะ
Tag : PHP, HTML/CSS, JavaScript
|
ประวัติการแก้ไข 2016-02-21 12:20:00
|
|
|
|
|
Date :
2016-02-21 11:35:18 |
By :
sammam |
View :
738 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
INSERT INTO member WHERE Username like '%".$keyword."%'
ไม่เคยเห็น เคยเห็นแต่ update
|
|
|
|
|
Date :
2016-02-21 12:19:17 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$SID. นี้ถูกรึยังค่ะ มันเหมือนกันหมดทุกอันเลยค่ะ
|
|
|
|
|
Date :
2016-02-21 13:43:28 |
By :
sammam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตามความเห็น 1 ครับ format การ insert มัน ผิด รูปแบบ
การ insert จะไม่มี where ครับ แต่สามารถใช้รวมกับ คำสั่ง select ได้
อันนี้แบบ พื้นฐาน
insert into table (field) values('data');
อันนี้เปลี่ยน values เป็น การ select จาก ตารางอื่นๆ
insert into table (field) select txt from table2 where x=1234;
ก็ดูความต้องการให้ดี และ ใช้คำสั่งให้ถูกต้องครับ
|
|
|
|
|
Date :
2016-02-21 15:05:14 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมาค่ะ ได้แล้วค่ะ ใช้ตัวนี้
Code (PHP)
$strSQL = "UPDATE member SET endpack ='".$_POST["dateend"]."' WHERE Username = 'test' ";
แต่ติดตรง $Uid = mysqli_insert_id($mysqli);// ???????
หรือว่าเป็นแบบนี้ถูกแล้ว
|
|
|
|
|
Date :
2016-02-21 20:54:02 |
By :
sammam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คำสั่ง mysqli_insert_id() จะไม่ใช้ร่วมกับ update ครับ
ใช้เฉพาะกับการ query ของการ insert เท่านั้นครับ
Code (PHP)
$mysqli->query('insert ......');
$uid=$mysqli->insert_id;
|
|
|
|
|
Date :
2016-02-21 21:42:13 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|