fetchRow()) { $i++; echo \'\'; 相关标签: 1条回答 暗喜 2021-01-29 08:48 Use double-quoted strings if you want variables to be parsed within : echo "<td><input value='{$row['moduleCode']}' /> </td>"; or extract your variables : echo '<td><input value="'.$row['moduleCode'].'" /> </td>'; 0 讨论(0) 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
Use double-quoted strings if you want variables to be parsed within :
echo "<td><input value='{$row['moduleCode']}' /> </td>";
or extract your variables :
echo '<td><input value="'.$row['moduleCode'].'" /> </td>';