Does anyone know where I can find the php_ibm_db2.dll extension for XAMPP running PHP 5.3.1?
We have some internal windows servers running XAMPP and I'm trying to figure out how to remotely connect to our local AS/400 server but I cannot find that extension anywhere. I found some older versions.
at the moment I'm doing a simple connect like:
$i5db2 = db2_connect(
"DBNAME", // Required if userid and password used
"10.X.X.X",
"xxxxxx-user",
"xxxxxx-pass",
array("i5_lib"=>"internet"))
or die("Connect error: " . db2_conn_errormsg());
and of course i'm getting the "undefined function db2_connect()" error b/c I don't have the extension.
Or would I be better off using odbc_connect()?
Any insight would be appreciated. Thanks...