variables

L

Licass

How to put values from variables in this server side ASP script :
mySQL= "UPDATE prereserva SET valor='reservada' WHERE n_prereserva=331"
 
M

MD Websunlimited

In VBScript use in ASP

valorVar = request.form("valor")
mySQL = "UPDATE prereserva " _
& "SET valor = '" & valor "' " _
& "WHERE n_prereserva = 331;"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top