All,
I am new to all this, so please be patient with me. I have established a connection with my MySQL database using ASP, but now I want to get data into the database via an .asp form.
The connection code I have inside regForm.asp is:
<%
ConnString = "Driver={MySQL};SERVER=localhost;DATABASE=databasename;UID=uid;PASSWORD=password"
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open ConnString
%>
What do I need to do to have data populate the MySQL table when the submit button on the form is clicked?
I have replaced the actual real info in the code above with generic stuff.
Please help.
Thanks in advance,
I am new to all this, so please be patient with me. I have established a connection with my MySQL database using ASP, but now I want to get data into the database via an .asp form.
The connection code I have inside regForm.asp is:
<%
ConnString = "Driver={MySQL};SERVER=localhost;DATABASE=databasename;UID=uid;PASSWORD=password"
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open ConnString
%>
What do I need to do to have data populate the MySQL table when the submit button on the form is clicked?
I have replaced the actual real info in the code above with generic stuff.
Please help.
Thanks in advance,