伙计们,请帮忙。我有一个带有表格的 html
<table class="secondtable">
<tr>
<th></th>
<th>Customer</th>
<th>input</th>
</tr>
<tr>
<td class="secondtabletd">Number of FCB request in last 30
days</td>
<td class="secondtabletd"></td>
<td class="secondtabletd"><input></td>
</tr>
</table>
通过单击按钮,输入的数据将保存到 php,后者通过 Excel 对其进行处理。从 Excel (PHPExcel) 获取数据我现在如何将这些数据从 php 添加到
<td class="secondtabletd"></td>
如果我通过 required_once 连接,则会显示一个错误,即数据未填写在输入中。是的,Excel 文件没有时间处理 - 因此,它显示错误的数据。
我发现的唯一选择是创建一个新的 php.ini 文件。
在其中,我通过 require_once 将它绑定到带有处理程序的 php 文件。
最后,我添加了html文件的包含,并且已经将所有数据都插入其中。
因此,为了启动 html 表单,我使用新创建的 php 文件 - 它还显示 html 表单并从处理程序添加数据。