我创建下拉字段以显示MySQL数据库中的数据。每次当我键入新数据时,它必须刷新以读取新数据。我知道Ajax也可以做到。但任何其他想法解决这个问题,而无需刷新以获取新数据?只要新数据输入,它就会自动更新而无需按F5或刷新。
这是我的代码:
<th style="width:25%"><font><div align="left">Select Product :</div></font>
<?php echo $form->input('Product',array(
'label' => 'Select Products',
'options' => $products,
'id' => 'product',
'style' => 'width:250px;height:100px',
'selected' => $html->value('Product.Product'),
'onchange' => 'List();')); ?>
</th>
<th >