基本的に、データベースから読み取ったデータを表示するテンプレートを表示しています。ユーザーはテーブルの行を確認し、[削除] をクリックしてデータベースから削除することができます。そのために、テーブルの周りにカスタム フォームを作成しました。このフォームは有効ですか? 何か不足していますか?私は自分でこれをやったので、間違いを犯しているかどうかわからないので、尋ねているだけです.
ありがとう
<form action="{{ path('main_referral_capture_manage_physicians') }}" method="post">
<table>
<thead>
<tr>
<th width="20">Select</th>
<th width="200">Referring Physician</th>
<th width="150">NPI Number</th>
<th width="150">Practice</th>
<th width="150">Location</th>
<th width="150">Phone</th>
<th width="150">Fax</th>
<th width="150">Email Address</th>
</tr>
</thead>
<tbody>
{% for physician in physicians %}
<tr>
<td><input name="chkphysician[]" type="checkbox" value="{{physician.id}}" /></td>
<td>{{ physician.physicianFirstName }} {{ physician.physicianLastName }}</td>
<td>{{ physician.physicianNpi }}</td>
<td>{{ physician.physicianPracticeName }}</td>
<td>{{ physician.physicianLocationName }}</td>
<td>{{ physician.physicianPhone }}</td>
<td>{{ physician.physicianFax }}</td>
<td>{{ physician.physicianEmail }}</td>
</tr>
{% endfor %}
</tbody>
</table>
<input type="submit" value="Remove" />
</form>