HTML標記:如何獲得由父類名元素在PHP
<form>
<div class="required">
<input id="name" name="name">
</div>
<div class="required">
<input id="email" name="email">
</div>
<div class="non-required">
<input id="other" name="other">
</div>
...
alot of input here
...
</form>
PHP:
<?php
extract($_POST, EXTR_PREFIX_ALL, 'input');
if (empty($input_name) || empty($input_email) || empty($input_other) || ... alot of input here...) { // i want only the input that has `required` class in this line
// main function here
}
?>
我可以手動編輯,但如何自動可以選擇input
有required
類的PHP主功能?
謝謝。
非常好的解決方案! – trincot
@trincot:謝謝你的讚揚。你的解決方案遵循同樣的想法,但保持一切服務器端。根據情況,這可能會更快,更安全。因此我在我的問題中增加了一個附錄。 – PvB