<% ds.db.pool p = new ds.db.pool("pb_content"); ds.db.table dictionary = p.newTable("dictionary"); String ID = ds.utils.gv(request, "ID"); String letter = ds.utils.gv(request, "letter"); String[][] dVals = new String[0][0]; String title = "Dental A-Z"; if (!ID.equals("")) { dVals = dictionary.findByValues(new String[] {"term", "body"}, "WHERE dict_id=" + ID); title = "Dental A-Z - " + dVals[0][0]; } else if (!letter.equals("")) { dVals = dictionary.findByValues(new String[] {"dict_id", "term"}, "WHERE INSTR(LCASE(term), '" + letter + "')=1"); title = "Dental A-Z - Letter " + letter.toUpperCase(); } %> Doctor Dental - <%= title %>
 

 



 

<%= title %>

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

<% if (!ID.equals("")) { %> <%= dVals[0][1] %> <% } else if (!letter.equals("")) { %> <% for (int i = 0; i < dVals.length; i++) { %> <% } %>

<%= dVals[i][1] %>


<% } %>


"My Good Practice Guide
and PracticeSearch will
help you find an online
dentist who cares"
 
 
<% p.close(); %>