Well I may need to start at the beginning
I have a database field with this number set
Ex.
01.23.42.55.47
So first I needed to break up those into individual #s
I did that by using this
$query = "SELECT num FROM bon";
$result = @mysql_query ($query); // Run the query.
if ($result) {
while ($row = mysql_fetch_assoc($result)){
$listnum=$row['num'];
$numarray = explode('.',$listnum);
list($aa, $bb, $cc, $dd, $ee) = $numarray;
$combined = array($aa, $bb, $cc, $dd, $ee);
echo '<pre>';
print_r($combined);
echo '</pre>';
}
}
Once I did that I got the array listed above
So if I do the example you posted I still get a count of 1 for each #
So Im assuming I need to merge the
list($aa, $bb, $cc, $dd, $ee) = $numarray;
From above but
Im really lost