From: Roderick D. T. <tho...@ms...> - 2009-12-09 21:29:43
|
Wondering how I should adjust the format below to connect to my work ODBC5100 database through PHP5. Ideally, I would like to extract data to create tables in MySQL. I believe it will allow for more efficiency. ? $dbserver = "localhost"; $dbuser = "xxxxxx"; $dbpass = "xxxxxx"; $dbdb = "xxxxxx"; mysql_connect($dbserver, $dbuser, $dbpass); mysql_select_db($dbdb); ?> |