Hello, I have a question.
Currently, I connect to my ODBC database directly on my server, without specifying any domain to connect to. I use something like this
$connect = odbc_connect("Users", "God", "edited");
$Users = odbc_exec($connect, "UPDATE Usernames SET activated='1' WHERE AccountName='$username'");
However, I was wondering if I am able to connect to the ODBC database remotely, from a page not on the server?
Thanks.