0

データベースからのレコードとボタンを表示する選択リストにすぎないフォームがあります。私がやりたいことは、彼らがオプションを選択して [送信] をクリックすると、問題のレコードを削除するページに移動することだけです。それを削除するには - (選択リストからの) tech_id を URL に追加する必要があります。テキスト フィールドの場合と同じように実行しましたが、うまくいきませんでした。助言がありますか?

<form method="post" id="form1" name="form1" action="delete-tech.php?tech_id=<?php echo $_POST['technician']; ?>">
  <p>Choose Technician to Delete:
    <select name="technician" id="technician" title="technician">
      <?php
do {  
?>
      <option value="<?php echo $row_getTechs['tech_id']?>"><?php echo $row_getTechs['tech_name']?></option>
      <?php
} while ($row_getTechs = mysqli_fetch_assoc($getTechs));
  $rows = mysqli_num_rows($getTechs);
  if($rows > 0) {
      mysqli_data_seek($getTechs, 0);
      $row_getTechs = mysqli_fetch_assoc($getTechs);
  }
?>
    </select>
  </p>
  <p>
    <input name="submit" type="submit" id="submit" value="Delete Technician">
  </p>
</form>
4

1 に答える 1