People
openConnection(); $result = $db->selectData(); while($row = mysql_fetch_array($result)) { if($row['name'] == 'Michael'){ echo 'Michael Tanner'; echo '
'; } else { echo $row['name']; echo '
'; } } ?>