<%@ page contentType="text/html; charset=utf-8" language="java" import="java.util.*, java.sql.*, lookingup2.*" errorPage="" %> <% Connection conn = null; DBConnector db = new DBConnector(); conn = db.getConnection( "jdbc:mysql://dbs9.2020media.com/DISCREET", "discreet", "erseersee" ); %> <%! private String replaceSpaces( String source ){ return source.replaceAll("\\s+", "_"); } private String replaceHyphens( String source ){ source = source.replaceAll("<", ""); source = source.replaceAll(">", ""); return source.replaceAll( "_", " " ); }%> <% ShoppingBasket basket = (ShoppingBasket) session.getAttribute("basket"); if (basket == null) { basket = new ShoppingBasket(); } if (request.getParameter("a")!=null){ basket.setSite( 11, "jdbc:mysql://dbs9.2020media.com/DISCREET", "lookingup", "erseersee" ); int number = 1; if( request.getParameter("b") != null ){ number = new Integer( request.getParameter("number" ) ).intValue(); } String f = ""; if( request.getParameter("f") != null ){ f = request.getParameter("f"); } for( int i = 0; i < number;i++ ){ ShoppingItem item = new ShoppingItem( ( new Integer( request.getParameter("b") ) ).intValue(), request.getParameter("a"), ( new Integer( request.getParameter("c") ) ).intValue(), request.getParameter("d"), ( new Integer( request.getParameter("e") ) ).intValue(), f ); basket.addShoppingItem( item ); } } session.setAttribute("basket", basket); %> Terms of Use

Terms of Use

--

Terms and Conditions

Orders for goods are placed subject exclusively to the terms and conditions below. By placing an order you are deemed to have accepted these terms and conditions.

A contract has not been entered into until payment is taken.

To alter your order please contact us via e-mail, quoting your order reference number, within 24 hours of ordering. To cancel your order and obtain a refund a request must be made within 30 working days of receipt of goods. Cancellations and alterations will be dealt with during office hours (9am-5pm Mon to Fri).

Whilst Looking Up Ltd use reasonable efforts to include accurate and up to date information on this site, it makes no warranties or representations as to the accuracy of such information. The information provided on this site and the pages contained herein are for guidance only and it does not constitute medical advice.

Overseas orders may be subject to an additional postage charge. We will notify you in the event of this.

Product images used within this website are representative only. Whilst we do our very best to keep our images updated, products received may differ in appearance and colour to those shown on the site.

You have supplied Looking Up Ltd with information about yourself. In respect your privacy & security we do not store these details beyond the time it is necessary for us to do so or pass then on to any third parties.

We endevour to respond to queries as quickly as possible and it is our policy to respond to all queries within 48 hours.

These terms and conditions and all sales via the this service shall be governed by and construed in accordance with English law. If you have any queries about contact us at:

Customer Service
12 Elm Avenue
Blackpool
FY3 9BQ

<%conn.close();%>