Ads
- This is first AD
- You can Place any ad here. Contact the site owner to get your ad placed here
- This is Second Ad
- You can Place any ad here. Contact the site owner to get your ad placed here, you can place any number of ads here.
- This is Third Ad
- You can Place any ad here. Contact the site owner to get your ad placed here, you can place any number of ads here.
- This is Fourth Ad
- You can Place any ad here. Contact the site owner to get your ad placed here, you can place any number of ads here.
Welcome To Message Board
<%
try {
Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection("jdbc:mysql://localhost/db","root","psi");
Statement stmt = con.createStatement();
String query1="SELECT * FROM msgboard";
ResultSet rs1 = stmt.executeQuery(query1);
out.println("
");
while(rs1.next())
{
String msg=rs1.getString(1);
out.println("
");
out.println(msg+"
");
out.println("
");
}
}
catch (Exception e)
{
out.println("Database error has occured" + e.getMessage());
}
%>