こんにちは、「post」を使用して 3 つのドロップダウン リストからデータベースに値を渡そうとしています。php スクリプトを使用して、3 つのリストの値をデータベースに挿入します。
以前は、jquery ajax呼び出しを使用して、別のページからdiv time.phpにリストを取得しました
次のようなコード:-
//This script uses jquery and ajax it is used to set the values in
// the time field whenever a day is selected.
$(document).ready(function(){
$("#day").change(function(){
var day=$("#day").val();
var doctor=$("#doctor").val();
$.ajax({
type:"post",
url:"time.php",
data:"day="+day+"&doctor="+doctor,
success:function(data){
$("#time").html(data);
}
});
});
});
html セクションのコードは次のようになります。
<select id="doctor">some options</select>
<select id="day">some options</select>
<div id="time"> </div>
これで、2 つのリストの値が正常に処理されます。しかし、divに取得したものは通過していません。正しい方向に私を向けることができますか?前もって感謝します。
//The php script for insertion
<?php
session_start(); //Use this to include session variables
$con=mysqli_connect("localhost","clinic","myclinic","myclinic");
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$query = "INSERT INTO appointment(username, doctor, day, time) VALUES('$_SESSION[username]', '$_POST[doctor]', '$_POST[day]', '$_POST[time]')";
if (!mysqli_query($con,$query))
{
die('Error: ' . mysqli_error($con));
}
mysqli_close($con);
header("location:login_success.php");
?>