$Query = "select max(staff_id) as staff_id ,count(staff_pers_id) as numID from p_staff where campus_id='02' and staff_pers_id is not null group by staff_pers_id";
$objParse = oci_parse ($objConnect, $Query);
oci_execute ($objParse);
while ($row = oci_fetch_array ($objParse, OCI_BOTH)) {
echo $row[0]." and ".$row["staff_id"]." is the same<br>";
echo $row[1]." and ".$row['staff_pers_id']." is the same<br>";
}