1 回答
TA贡献2039条经验 获得超7个赞
假设您的表单检查确保在每一行中完成所有 4 个字段,您可以简单地使用foreach它来浏览所有内容并将其添加到 PDF 中。
首先,不要内爆你的_POST数组。保持它们完好无损,您将能够使用foreach它们来浏览它们。
$from = (isset($_POST['date_from']) ? $_POST['date_from'] : array());
$to = (isset($_POST['date_to']) ? $_POST['date_to'] : array());
$schoolName = (isset($_POST['school_name']) ? $_POST['school_name'] : array());
$examResults = (isset($_POST['results']) ? $_POST['results'] : array());
foreach ($from as $point => $data) {
$pdf->Cell($width_cell[0],10,$data,1,1,'C');
// if you want to put the "to" in another cell it would be referenced
// as $to[$point] or $schoolName[$point] etc
}
如果您想将 from、to 和 schoolName 数据放在一行上,您可以使用以下内容:
$pdf->Cell($width_cell[0],10,'From: ' . $data .
' To: ' . $to[$point] .
' School Name ' . $schoolName[$point],1,1,'C');
- 1 回答
- 0 关注
- 105 浏览
添加回答
举报