%
OpenDB()
rsfound = false
cat = request("cat")
if not isnumeric(cat) then
response.End()
end if
sid = request("sid")
if sid <> "" then
if not isnumeric(sid) then
response.End()
end if
end if
cid = request("cid")
if cid <> "" then
if not isnumeric(cid) then
response.End()
end if
end if
pid = ("tobac.asp")
If cat <> "" Then
If sid <>"" then
sql = "select products.*,categories.* from (products Inner join categories ON products.cid=categories.catid) where cid = "&cat&" AND subcatid = "&sid&" order by productid desc"
Else
sql = "select products.*,categories.* from (products Inner join categories ON products.cid=categories.catid) where cid = "&cat&" order by productid desc"
End If
rs.Open sql,conn,1,3
If not rs.eof then
categoryname = rs("categoryname")
End If
End If
%>
Product Catalogue
Luxury Cigarettes, Tobacco & Snuff
We carry a selection of speciality cigarettes that are hard to find in your local newsagent brands include the Djarum range of clove & flavoured cigarettes from Indonesia, Ziganov, Natural American Spirit, Karelia Slims, Treasurer, Tor and the ever so popular Sobranie Cocktail and Sobranie Black Russian brands. We have a selection of popular pipe tobaccos including our famous Bonds of Oxford Street Optimum Special which is shipped to our customers all around the world. You will also find a selection of popular snuff tobaccos including Hedges, McChrystals and President.
<% closedb %>