0

このコードが機能しないのはなぜですか? 私は持っている

<script>
//script to retrieve a list from a page and place it inside a div.       
</script>

//This is the list on the otherpage.
<select name='timing' id='timing'> Some Options </select>

それが配置されているdiv

<html>
<body>
<form method="post" action="insert.php">
<div id="time"></div>
//some more elements and a submit button

</form>
</body>
</html>

送信時に、データはデータをデータベースに挿入する php ページに移動する必要があります

<?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[timing]')";

  // So on.

問題は、フォームが div 内に配置されたものを除くすべての値を送信することです 私はこれに長い間立ち往生してきました。

4

1 に答える 1