I am trying to access to dash db from netbenas 8.0 but it is unable to access throwing the error
Call to undefined function db2_connect() in /var/www/PhpProject6/demo3.php on line 11 while running through netbeans8.0
<?php
$database = '';
$user = '';
$password = '';
$hostname = '';
$port = 50000;
$conn_string = "DRIVER={IBM DB2 ODBC DRIVER};DATABASE=$database;" .
"HOSTNAME=$hostname;PORT=$port;PROTOCOL=TCPIP;UID=$user;PWD=$password;";
$conn = db2_connect($conn_string, '', '');
if ($conn) {
echo "Connection succeeded.";
db2_close($conn);
}
else {
echo "Connection failed.";
}
?>