The information i have concerning the oracle database i need to connect to using php through easyphp is the following: user, password, host, port, service . New to the odbc thing i tried to use the function odbc_connect but i keep getting errors simply because i don't know how to make a dsn.
Though, i tried using this :
$dns_db="DRIVER={DataDirect 32-BIT SequeLink 5.4};HOST=localhost; PORT=2399;ServerDataSource=maDB;"
But i totally ignore what does {DataDirect 32-BIT SequeLink 5.4} mean
, and it seems like i need to know the database's name so i can put it in the ServerDataSource.
So that's my question, can anyone show me how to make this dsn thing ? Thanks in advance.