I am extremely new to PHP and have been trying to connect to a SQL server I have on the system DSN of my ODBC. However, the whole process is adamant in its refusal to work. The server is located on my company's network.
The code below brings up the die message-
<?php
if(!($db=odbc_connect("SAGE2000LIVE"," ", " ")))
die("nothing really matters... to me");
?>
When I try to connect to an access database which is saved locally, it works fine.
Does anyone have an idea where I am going wrong? Should I change the Queen lyrics before I lose my mind?