我有一个表格
<form method="GET" action="/boxr_app/v2/profile">
<input type="text" name="gamertag" placeholder="What is your gamertag?" autocomplete="off" size="50" />
<input type="submit" value="Search" />
</form>
我想检查输入是否小于 4,它在同一页面中显示错误,就在表单下方,但我不知道该怎么做,知道吗?我试过这个
<?php if($_GET['gamertag] < 4) { echo 'invalid blah blah blah'; } ?>