Example in ASP
dim pnref
dim result
dim respmsg
pnref= getParam("PNREF")
result = getParam("RESULT")
respmsg = getParam("RESPMSG")
response.write "<font color = red>" & respmsg & "</font><br>"
if result = 0 then
cn.execute("insert into invoices (member_id, invoice_id) values (" &...
I am created a shopping cart successfully in servletusing the following SQL "select order_id, name, price, quantity, member_id, quantity*price as sub_total from items, orders where orders.item_id=items.item_id order by order id".
What I would like to be able to do is be able to get the user to...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.