【发布时间】:2018-03-05 18:40:41
【问题描述】:
PHP Page 我不明白我必须做什么才能显示净值。
它没有显示任何价值。我该怎么办,请帮帮我。PDF File
这是表格代码。我在表尾看不到运费净值。
<table width="100%">
<tr>
<td colspan="8" class="estilo4"><CENTER><strong> <h1>Payment</h1></strong></CENTER></td>
</tr>
<tr bgcolor="black" border="1" solid #5D6975 cellspacing="0" cellpadding="0">
<th class="estilo1">'.$TRACK.'</th>
<th class="estilo1">'.$zones.'</th>
<th class="estilo1">'.$FECHA.'</th>
<th class="estilo1">'.$Mer.'</th>
<th class="estilo1">'.$DESTINA.'</th>
<th class="estilo1">'.$NUMBERPHONE.'</th>
<th class="estilo1">'.$ESTADO.'</th>
<th class="estilo1">'.$deliveryboy.'</th>
</tr>
</thead>
<tbody>
';
$sql=mysql_query("SELECT * FROM courier_online WHERE payment = 'OK' AND email='$qname' AND date BETWEEN '$desde' AND '$hasta'");
while($express=mysql_fetch_array($sql)){
$initial = 0; // Empezar a contar desde 0
$initial = $initial + $row['shipping_subtotal'];
$codigoHTML.='
<tr>
<td class="estilo3">'.$express['cons_no'].'</td>
<td class="estilo3">'.$express['shipping_subtotal'].'</td>
<td class="estilo3">'.$express['date'].'</td>
<td class="estilo3">'.$express['user'].'</td>
<td class="estilo3">'.$express['rev_name'].'</td>
<td class="estilo3">'.$express['r_phone'].'</td>
<td class="estilo3">'.$express['status'].'</td>
<td class="estilo3"></td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2" style="text-align: right;" rowspan="1">
<b><?php echo $initial; ?></b>
</td>
</tr>
</tfoot>
';
}
$codigoHTML.='
</table>
【问题讨论】:
-
请编辑您的问题以包含您的代码。而不是您的代码图片。
-
也与创建 pdf 无关。
-
$initial +=$row[....]; -
@rtfm - 嗯?为什么要随机发布一行代码?
-
@DavidMakogon 不是随机的,请参阅 OP 的代码。
标签: php mysql pdf dompdf calculated-field