より多くの送信ボタンを備えたフォームを作成しても問題ありませんか? つまり、いくつかの入力フィールドと、テーブルと、いくつかの情報をさまざまな形式でエクスポートする 3 つのボタンを含むフォームがあるということです。
<form id="form1" name="form1" method="post" >
<label for="country"><strong>Countries: </strong></label><br />
<select id="country" name="country">
<?php
//some php code here
?>
</select>
<br />
<br/>
<label for="start_date"><strong>Start date: </strong></label><br />
<input name="start_date" type="text" id="start_date" value="<?php if(!empty($start))echo $start; ?>" size="20" />
<br />
<br />
<label for="stop_date"><strong>Stop date: </strong></label><br />
<input name="stop_date" type="text" id="stop_date" value="<?php if(!empty($stop)) echo $stop; ?>" size="20" />
<br />
<br />
<input type="submit" name="fill_table" value="Retrieve data" />
<div id="table">
<h1> </h1>
<hr />
<h2>Sales Report</h2>
<table class="display" id="data_table" >
<thead>
<tr>
<th>Product</th>
<th>Date</th>
<th>Quantity</th>
</tr>
</thead>
<tbody>
<?php
//some php code here
?>
</tbody>
</table>
<br />
<br />
<br />
<input type="submit" class="button" name="export_xls" value="Export xls" />
<input style="margin-left:10px;" type="submit" name="export_html" value="Export html" />
</form>
このようにしても問題ありませんか、それとも特定の送信ボタンを持つ 3 つのフォームを作成する必要がありますか? 送信ボタンを押すたびに、入力フィールド:start_date、stop_date、および「country」から選択した項目に興味があります。PSそれが最適かどうか、そして他のプログラマーがこれをどのように処理するかを知りたい