Re: How can change this im using MYSQL
You should first remove the comment characters in front of the lines related to MySQL and put comment characters in front of the other lines. Here it is predone for you:
<%
':::::::::::::::::::::::::::::::::::::::::: CHOOSE YOUR DATABASE TYPE
'DatabaseType = "Access"
DatabaseType = "MySQL"
':::::::::::::::::::::::::::::::::::::::::: ACCESS DATABASE PATH
':::::::::::::::::::::::: PHYSICAL PATH:
'Connection.Open "DBQ=" & ("C:\your_physical_path\db\iyziforum.mdb") & "; Driver={Microsoft Access Driver (*.mdb)}"
':::::::::::::::::::::::: VIRTUAL PATH:
'Connection.Open "DBQ=" & Server.MapPath("db/iyziforum.mdb") & "; Driver={Microsoft Access Driver (*.mdb)}"
':::::::::::::::::::::::::::::::::::::::::: MySQL DATABASE
MySQLServer = "localhost"
MySQLUsername = ""
MySQLPassword = ""
MySQLDatabaseName = "iyziforum"
Connection.Open = "Driver={MySQL ODBC 3.51 Driver}; Server=" & MySQLServer & "; UID=" & MySQLUsername & "; Pwd=" & MySQLPassword & "; Db=" & MySQLDatabaseName
'::::::::::::::::::::::::::::::::::::::::::
AdditionalTableWord = ""
%>
Now just write down your MySQL database information to the necessary lines:
MySQLServer = "localhost"
MySQLUsername = ""
MySQLPassword = ""
MySQLDatabaseName = "iyziforum"