我的桌子在1排上有3 td。
我只需要验证。 当我按开始按钮时,它会保存帖子的所有数据。 当我按停止按钮时,它应验证用户首先从列表框中选择数据。
下面是我的代码。单击开始按钮和停止按钮,我在下面调用保存代码。
<?php
require_once('includes/config.php');
$editionmaster = new editionmaster;
$machine = new machine;
if(isset($_POST['save']))
{
if(isset($_GET['Message']))
{
$_POST['Message'] = $_GET['Message'];
}
$_POST['stoptime'] = $date->format('H:i');
$_POST['starttime'] = $date->format('H:i');
$machine->save($machine->table,$_POST);
$_SESSION['message'] = "Data Saved Successfully";
header('Location: machine_final.php');
exit;
}
?>
下面的是我的列表框代码
<td>
<select class="form-control" name="Message" style="width:47px; height:20px; background-color:#f4f4f4;">
<option value=""></option>
<?php
foreach($result as $reason)
{
?>
<option value="<?php echo $reason['Alias']; ?>"><?php echo $reason['Message']; ?></option>
<?php } ?>
</select>
</td>