如何将PHP数据导入HTML表

时间:2018-02-09 19:09:22

标签: php html

我试图在html中查看表中的乘法表数据,但它不起作用。我试图在html中使用“table”表格格式。

<html>
<body>
  <?php


<table>
<tr>
 <td>for($i = 0; $i<=9; $i++)
 {
<td>for($j=0; $j <=9; $j++)
{
  $product = $i * $j;
  echo $i . " X " . $j . " = " . $product . "<br>";
}</td>
 }</td>
</tr>
</table>

   ?>
</body>


</html>

如何将PHP数据导入HTML表格?

2 个答案:

答案 0 :(得分:0)

下面的代码将打印从1到10的表格。

代码:

<html>
<body>

<?php
echo "<table border =\"1\" style='border-collapse: collapse'>";
    for ($row=1; $row <= 10; $row++) { 
        echo "<tr> \n";
        for ($col=1; $col <= 10; $col++) { 
           $p = $col * $row;
           echo "<td>$p</td> \n";
            }
            echo "</tr>";
        }
        echo "</table>";
?>

</body>
</html>

PS:你可以做很少的谷歌搜索并获得结果。

答案 1 :(得分:0)

你的意思是这样的

def getMyCollection[C[A] <: Traversable[A]]: MyCollection[C] = {
  val jsonString = """{ "stuff": ["a","b"] }"""
  val json = io.circe.parser.parse(jsonString).right.get
  json.as[MyCollection[C]].right.get
}

def asVector: MyCollection[Vector] = getMyCollection[Vector]
def asList: MyCollection[List] = getMyCollection[List]