Hi I am trying to use this script to add data to my MYSQL Database but keep getting errors, anyone see whats wrong?
<%
option explicit
response.buffer = true
response.expires = -1000
response.expiresabsolute = #1980-01-01 12:00#
response.addheader "cache-control", "private"
response.addheader "pragma", "no-cache"
Dim objMail, msg
Dim sqlserver, conn, uid, pwd, database, sql, rs
sqlserver = "mydbb3.foretag.surftown.se"
uid = "xxxx"
pwd = "xxxx"
database = "norskhy_flaggan"
Set conn = Server.CreateObject("ADODB.Connection")
conn.ConnectionString = "network=dbmssocn;server=" & sqlserver & ";driver={SQL Server};uid=" & uid & ";pwd=" & pwd & ";database=" & database
conn.Open
'adduser.asp?namn=namn&adress=adress&ort=ort&telefon=telefon&email=email&tid=tid
%>