%@ include file="/dbconn/dbconn.inc" %>
|
<%
while(CPrs.next()) {
String id = CPrs.getString("id");
String name1 = CPrs.getString("name");
String email = CPrs.getString("email");
String location = CPrs.getString("location");
String postDate = CPrs.getString("post_date").substring(0, 10);
String profile = CPrs.getString("profile");
%>
<%= name1 %> <%= email %> <%=location%> Posted on: <%=postDate%> <%=profile%> <% } CPrs.close(); CPstmt.close(); %> |
|