在我的代碼中,當我們點擊確定按鈕。這將回聲3如何計算有價值的投入?
我想申請來算只有那些價值只有
怎麼做輸入?
<?php
if(isset($_POST["submit"]))
{
echo count($_POST["to_more"]);
}
?>
<form name="f1" method="post">
<input type="text" name="to_more[]">
<input type="text" name="to_more[]">
<input type="text" name="to_more[]">
<input type="submit" name="submit" value="OK">
</form>
循環比只有你會得到計數。 –
循環$ _POST ['to_more'],如果它包含值,則計數它們 –