May 29, 2007 #1 Zuggy Programmer Joined May 18, 2007 Messages 12 Location US I'm new to PHP and I'm trying to convert a login script written for MySQL to an Access Database using ODBC. What I need to know is, will mysql_query work or do I need to change it, and if so to what? And no I can't us MySQL, Access is required.
I'm new to PHP and I'm trying to convert a login script written for MySQL to an Access Database using ODBC. What I need to know is, will mysql_query work or do I need to change it, and if so to what? And no I can't us MySQL, Access is required.
May 29, 2007 #2 jpadie Technical User Joined Nov 24, 2003 Messages 10,094 Location FR since you are not using a mysql database, mysql_query will not work. instead you will need to use odbc_query as you are using an odbc connection Upvote 0 Downvote
since you are not using a mysql database, mysql_query will not work. instead you will need to use odbc_query as you are using an odbc connection