|
|
|
อยากทราบโค้ด ที่กด submit มี pop up ขึ้นว่า"ข้อมูลได้ส่งไปแล้ว" แสดงว่าข้อมูลลงฐานข้อมูล แล้วเด้งกลับมาหน้าเดิมอัตโนมัติ |
|
|
|
|
|
|
|
Code (PHP)
<form action="save.php" method="post" >
<div class="success_wrapper">
<div class="success-message">Contact form submitted</div>
</div>
<label>
<input name="txt_name" type="text" placeholder="Name:" data-constraints="@Required @JustLetters" />
</label>
<label >
<input name="txt_email" type="text" placeholder="E-mail:" data-constraints="@Required @Email" />
</label>
<label >
<input name="txt_phone" type="text" placeholder="Phone:" data-constraints="@Required @JustNumbers"/>
</label><br>
<label >
<textarea name="txt_message" cols="72" rows="20" placeholder="Message:" data-constraints='@Required @Length(min=20,max=999999)'></textarea>
</label>
<div>
<input type="reset" value="reset">
<input type="submit" value="submit" onclick="myFunction()">
<script>
function myFunction() {
alert("ข้อความได้ส่งไปแล้ว");
}
</script>
</div>
</form>
Code (PHP)
<?php
mysql_connect("localhost","root","12345678");
mysql_select_db("restaurant");
if(trim($_POST["txt_name"]) == "")
{
echo "กรุณาใส่ชื่อด้วย";
exit();
}
if(trim($_POST["txt_email"]) == "")
{
echo "ใส่นามสกุลด้วย";
exit();
}
if($_POST["txt_phone"] == "")
{
echo "ใส่อายุด้วย";
exit();
}
if($_POST["txt_message"] == "")
{
echo "ใส่อายุด้วย";
exit();
}
$strSQL = "INSERT INTO koreanfood (con_name,con_email,con_phone,con_message) VALUES ('".$_POST["txt_name"]."',
'".$_POST["txt_email"]."','".$_POST["txt_phone"]."','".$_POST["txt_message"]."')";
$objQuery = mysql_query($strSQL);
echo "เก็บข้อมูลแล้วครัช";
mysql_close();
?>
Tag : MySQL, JavaScript, Action Script, Ajax, jQuery
|
|
|
|
|
|
Date :
2016-03-20 19:18:16 |
By :
jeerawan |
View :
1204 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code
echo "<script>alert('เก็บข้อมูลแล้วครัช');window.location='back.php';</script>";
exit();
|
|
|
|
|
Date :
2016-03-20 22:30:23 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|