i have a php page calling database connection to a interbase database
$dbconn = ibase_pconnect( $db_host, $db_username, $db_password );
it is running well.
but when i try to run this page from commandline
i got the error message that
Fatal error, Call to undefined function ibase-pconnect()
why i got this error in commandline exec. not in browser?
Hui