0

我有此页面,其中包含要打印的多条记录。

问题是我最后得到一个空白页。

我的 CSS:

.break { 
    page-break-after: always; 
    }

我的html/php:

...
</table>
  <p class="break">&nbsp;</p>
    <?php } while ($row_RSacessorios = mysql_fetch_assoc($RSacessorios)); ?>
</body>
</html>
<?php
mysql_free_result($RSacessorios);
mysql_free_result($RSfases);
?>
4

1 回答 1

0

我找到了一个简单的解决方案。我只是删除了最后一条记录上的“中断”类。

if ($count < $total_rec) {
  <p class="break">&nbsp;</p>
}
于 2013-08-06T07:16:32.190 回答