<%@ page language="java" import="java.sql.*"%> Third Party Web Services
<% Class.forName("org.gjt.mm.mysql.Driver"); Connection con=null; ResultSet rst=null; Statement stmt=null; String pge = "Web_Services"; try{ con = DriverManager.getConnection("jdbc:mysql://localhost/databasenameRemoved","usernameRemoved","passwordRemoved"); stmt= con.createStatement(); rst=stmt.executeQuery("SELECT * FROM TBLPAGES WHERE pageCat=('"+pge+"')ORDER BY pageDate DESC LIMIT 1"); while(rst.next()){ String b=(rst.getObject(2).toString());//pageTitle String c=(rst.getObject(3).toString());//pageText %>
<%@ include file="nav.html" %>

<%=b%>


<%=c%>
Exchange Currency From:-


Exchange Currency To:-

Disclaimer: Please note that these currency rates are sourced from a 'third party' over which we have no control and therefore Complete Websites or anyone associated with the Complete Websites cannot be held responsible for any loss whatsoever incurred by anyone in respect of this information.

We would strongly recommend that before undertaking any transaction, that you check with an established bank their current exchange rates as they may differ from these shown above.
<%@ include file="media.html" %> <% } rst.close(); stmt.close(); con.close(); } catch(Exception e){ System.out.println(e.getMessage()); } finally { try { if(con!= null) con.close(); } catch (SQLException ignored) { out.println(ignored); } } %>