|
Show All Current and Emeritus Faculty, Lecturers, and Research Scientists (short list)
Show All Faculty Profiles with Photos
Search Faculty List Alphabetically:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
Faculty Sorted by Title:
Tenured/Tenure-Track: ALL
CSE
ECE
Emeritus/Retired:
ALL
CSE
ECE Lecturer and Adjunct:
ALL
CSE
ECE
Research Scientists
ALL
CSE
ECE
Faculty Sorted by Division:
Computer Science and Engineering
Electrical and Computer Engineering
Faculty Sorted by Research Area:
include("/w/web/eecs/etc/people/change/db.php"); dbconnect();
$home = "https://www.eecs.umich.edu/eecs/etc/fac";
$count = 0;
$areas_found1 = $areas_found2 = '';
$sql = "SELECT * FROM research ORDER BY research_name";
$result = mysql_query($sql) or die (mysql_error());
$num_rows = mysql_num_rows($result);
$left = round($num_rows/2);
$sql = "SELECT * FROM research ORDER BY research_name";
$result = mysql_query($sql) or die (mysql_error());
while ($row = mysql_fetch_array($result))
{
$count += 1;
$research_id = $row["research_id"];
$research_name = $research_name1 = $row["research_name"];
$research_name1 = preg_replace("/ /", '_', $research_name1);
if($count <= $left) { $areas_found1 .= "$research_name \n"; }
else { $areas_found2 .= "$research_name \n"; }
}
?>
| echo "$areas_found1"; ?> |
echo "$areas_found2"; ?> |
|