Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从用户输入值中获取分页号,如下所示:
$html .= "<input type='submit' name='next' value='$next_page_number' />";
我想将此输入值文本显示为箭头“→”。 我怎样才能做到这一点并仍然从中获取输入值$_POST?
$_POST
使用隐藏输入来存储实际值,具有您当前分配给提交按钮的名称。
<input type='hidden' name='next' value='$next_page_number' /> <input type='submit' name='submit' value='Your arrow thing' />
从这个$_POST角度来看,它不知道也不关心这个值来源于什么样的输入。它只知道输入的名称和它所持有的值。