01.
<?php
02.
function
notempty(
$val
){
03.
return
!
empty
(
$val
);
04.
}
05.
06.
if
(isset(
$_POST
[
"submit"
]))
07.
{
08.
echo
count
(
array_filter
(
$_POST
[
"to_more"
],
"notempty"
));
09.
}
10.
?>
11.
<form name=
"f1"
method=
"post"
>
12.
<input type=
"text"
name=
"to_more[]"
>
13.
<input type=
"text"
name=
"to_more[]"
>
14.
<input type=
"text"
name=
"to_more[]"
>
15.
<input type=
"submit"
name=
"submit"
value=
"OK"
>
16.
</form>