|
The following resource materials provide
information that may be of interest to those contemplating or implementing a
lead in gasoline phase out. ILMC welcomes suggstions for additional materials
to be included in the bibliography.
<%
$fields = array();
$sql = "SELECT * FROM Fields";
$db->query($sql);
while ($db->next_record()) {
$fields[$db->f("DBField")] = $db->f("Label");
}
$sql = "SELECT Sections.SectionName, Biblio.* FROM Biblio INNER JOIN Sections ON Biblio.SectionID = Sections.SectionID ORDER BY Biblio.SectionID, Biblio.ID";
$db->query($sql);
%>
<%
$prevsection = "";
while ($db->next_record()):
if ($prevsection != $db->f("SectionName")):
$prevsection = $db->f("SectionName");
%>
| <%= $db->f("SectionName"); %> |
<% endif; %>
| Title |
<%= $db->f("Title"); %> |
<%
reset($fields);
while (list($dbfield, $label) = each($fields)):
%>
<% if ($db->f($dbfield)): %>
| <%= $label; %> |
<%= $db->f($dbfield); %> |
<% endif; %>
<% endwhile; %>
<% endwhile; %>
|