输入文本框的回显值

时间:2014-04-18 16:40:55

标签: php html

<?php
    echo htmlentities($img_width);
    // Outputs: <input type="text" name="image_w" value="500" size="6" maxlength="5"/>
?>

我无法访问&#39; image_w&#39;。

如何只回显值(即:500)?

1 个答案:

答案 0 :(得分:0)

echo '<input required  type = "text" name = "image_w" value="' . $img_width. '" />'

试试吧