how to count the number of items been post and and it in a array php code example
Example: php length of array
<?php
$arr = ["one", "two", "three", "four"];
echo count($arr);
?>
<?php
$arr = ["one", "two", "three", "four"];
echo count($arr);
?>