<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Live Check</title> <script type="text/javascript" src="js/jquery-1.9.0.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $("#stime").keyup(function (e) { var stime = $(this).val(); $("#stime-result").html('<img src="imgs/ajax-loader.gif" />'); $.post('check_dt.php', {'stime':stime}, function(data) { $("#stime-result").html(data); }); }); }); </script> <style type="text/css"> #registration-form {background: #FDFDFD;width: 200px;padding: 20px;margin-right: auto;margin-left: auto;border: 1px solid #E9E9E9;border-radius: 10px;} </style> </head> <body> <form action="action_page.php" method="post"> <div id="registration-form"> DATE: <input name="start" type="text" id="start" maxlength="15"><br><br> TIME: <input name="stime" type="text" id="stime" maxlength="15"> <span id="stime-result"></span> </div> </form> </body> </html>
<?php $db_username = 'root'; $db_password = 'root'; $db_name = 'dtcheck'; $db_host = 'localhost'; if(isset($_POST["stime"])) { $connecDB = mysqli_connect($db_host, $db_username, $db_password,$db_name)or die('could not connect to database'); $stime = $_POST["stime"]; $results = mysqli_query($connecDB,"SELECT * FROM dt_list WHERE stime='$stime'"); $stime_exist = mysqli_num_rows($results); if($stime_exist) { die('<img src="imgs/not-available.png" />'); }else{ die('<img src="imgs/available.png" /><br> <input type="submit" />'); } mysqli_close($connecDB); } ?>
$start = $_POST["start"]; $stime = $_POST["stime"]; $results = mysqli_query($connecDB,"SELECT * FROM dt_list WHERE start='$start' and stime='$stime'");
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง