Hi,

> $res = mysql_query ("SELECT COUNT(deptid) FROM maintenance GROUP BY
> deptid");
> $deptcount = array(); // reset the array
> while ($row = mysql_fetch_row ($res)) {
>   $deptcount[] = $row[0];

this should be $deptcount[] .= $row[0]; shouldn't it?

> }
> 

cheers
J


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to