Thanks, that worked good. What I need to do now is display a different set of values from the same table. One line shows the results of field 2 when field 1 is equal to one value. The next line will show the results of field 2 when field 1 is equal to a different value. My thought is that I would do this:
Code:
<?php
if($row_Recordset1['department'] == 'Childrens Church') {
echo $row_Recordset1['names']."</p>";
}
?>
<?php
if($row_Recordset1['department'] == 'Welcome Ministry') {
echo $row_Recordset1['names']."</p>";
}
?>
This is not working for some reason?
Bookmarks