PHP和布局打印的边框表

时间:2017-10-24 12:03:06

标签: php html-table ms-word border

我对查询的结果页面有两个问题.... 问题1 桌子的边界。

我有一串与此相同的字符串

$ content. = "<tr> <td> Total <td>". $ line ["total"]. "";

我只想拥有变量php(". $ riga [" total"].")的边框。

我试过了 PHP:$ content. = "<tr> <td> Total <td> <table border =" 1 ">". $ line ["total_arrest"]. ""; ,但显然是错误的。

我该如何解决?

问题编号2

使用此代码在单词中导出结果搜索

if (isset ($ _ POST ['submit'])) {
       header ("Content-Type: application / vnd.msword");
       header ("Expires: 0"); // no-cache
      header ("Cache-Control: must-revalidate, post-check = 0, pre-check = 0"); // no-cache
    header ("content-disposition: attachment; filename = morning _" date ("d_m_Y"). "doc");

}

我正确导出它但我想用打印布局导出它,因为它在网页布局中

1 个答案:

答案 0 :(得分:0)

对于问题编号1,您可以在表格标签中尝试使用Inline CSS样式,例如

style =“border:1px solid black;”