<?php
echo htmlentities($img_width);
// Outputs: <input type="text" name="image_w" value="500" size="6" maxlength="5"/>
?>
我无法访问&#39; image_w&#39;。
如何只回显值(即:500)?
答案 0 :(得分:0)
echo '<input required type = "text" name = "image_w" value="' . $img_width. '" />'
试试吧