我正在尝试为表格创建标题。但是,似乎for循环中的所有值都不作为标题。
这是我得到的结果
<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>
答案 0 :(得分:3)
尝试将[+]更改为[。]
echo "<th id='C.$i'>" . $_REQUEST['c'.$i] . " </th>";