OK. Thats easy. Just create an array and output it in a table like shown below.
(You must fill inn the names in the array).
<?php
# Creating the array with all the info
$info = array (
array('Name', 'Phone', 'Office', 'Email'),
array('Alex Aiken', '5-3359', 'Gates 411', '-'),
array('Serafim Batzoglou', '3-3334', 'Clark S266', '-'),
array('Gill Bejerano', '650 723-7666', 'Beckman B321', '-'),
array('Dan Boneh', '5-3897', 'GATES 475', '-'),
);
echo "<table border=1>";
#First loop through the arrays index
for($row=0; $row<count($info); $row++) {
echo "<tr>";
# Then loop through each element of the arrays
for($column=0; $column<count($info[$row]); $column++) {
print "<td>".$info[$row][$column]."</td>";
}
echo "</tr>";
}
echo "</table>";
?>