在标题中不是吗?

时间:2014-05-11 06:14:45

标签: php html for-loop

我正在尝试为表格创建标题。但是,似乎for循环中的所有值都不作为标题。

这是我得到的结果

enter image description here

<html>
<head>
    <title>This is the code: </title>
</head>
<body>



    <?php
        echo "<table border=\"1\" style=\"width:300px\">";

            echo "<tr>";

                echo "<th id=\"Cost\">Cost</th>";

                for($i = 1; $i < 6; $i++){
                    echo "<th id='C.$i'>" + $_REQUEST['c'.$i] + "     </th>";
                }



            echo "</tr>";

        echo "</table>";
    ?>

</body>
</html>

1 个答案:

答案 0 :(得分:3)

尝试将[+]更改为[。]

       echo "<th id='C.$i'>" . $_REQUEST['c'.$i] . "     </th>";