我正在建立一个网站,但我完全迷失了方向,请向我显示。 我想要一个页面,我想在其中显示某人提供的某些服务。 假设说ABC是三项服务,我想将这些服务存储在数据库中并在页面上显示出来。
我开发了一种侧面导航,其中我使用了表格并显示了我现在想要的所有服务名称与图像一起显示服务的内容(图像和内容都存储在数据库中)。显示了图像。
我该怎么做?? On side nav is the service name how to show the content of the service on clicking of service
我上面的代码
</head>
<body>
<div class="sidenav">
<div>
<%
ArrayList list = new ArrayList();
ArrayList sublist = new ArrayList();
Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/amber", "root", "sameer0207");
%>
<table >
<td>
<%
String query1 = "select * from image";
Statement st1 = con.createStatement();
ResultSet rs1 = st1.executeQuery(query1);
while (rs1.next()) {
%>
<a href="#">
<%= rs1.getString("service_name")%>
</a>
<% }%>
</td>
</table>
</div>
</div>
<div class="main">
<h2>Sidenav Example</h2>
<p>This sidenav is always shown.</p>
</div>
</body>
</html>