I have a minor emergency.
Heres my code:
$connection = odbc_connect ("dsnname","","","");
if (!$connection)
{
Error_handler( "Error in odbc_connect" , $connection );
}
And when I try and bring up the page in question, I get the Error:
Error in odbc_connect
No matter what I try. I called the hosting company, and they say that there is NO userid and password. I've tried several ways:
$connection = odbc_connect ('dsnname','','');
$connection = odbc_connect ('dsnname');
$connection = odbc_connect ("DSN=dsnname;","","");
And none of these work. I have checked the spelling of the DSN with the Host, and its right. They swear that the ODBC is on the money, and its my code.
Any ideas would GREATLY be appreciated, as I can now sleep again :-) Thanks!
BjM