我正在尝试根据从数据库查询返回的行数在表单中回显一个值。不断收到错误解析错误:语法错误,意外的 T_ECHO,期待 ',' 或 ';'
正如您可能会说的那样,我对此很陌生。谁能帮我回显变量?我知道 $num_rows 正在返回一个值,就像使用 var_dump 节目一样。谢谢
<?
if($num_rows <= 10) {
echo '</br></br><form id="h1" class="rounded" action="4.php" target=""
method="post"/>
<input type="submit" name="submit" class="button" value="10" /><br>
<input type="text" name="number_of_tests" value="'echo $num_rows;'"/>
</form>';
}
if($num_rows >10) {
echo '</br></br><form id="h2" class="rounded" action="4.php"
target="_blank" method="post"/>
<input type="submit" name="submit" class="button" value="11"/><BR>
<input type="text" name="number_of_tests" value="'echo $num_rows;'"/>
</form>';
}?>