detecting number of values in an array
Posted: Sat Oct 29, 2005 12:52 am
I would like to know if it's possible to detect the number of values in an array like so:
and I would get the number 6 cause there are 6 values in there
Code: Select all
<?PHP
$array = array('text1', 'text2', 'text3', 'text4', 'text5', 'text6');
?>