For starters...I built a CMS (content management system) with PHP and a mySQL database under brinkster hosting. The CMS works fine with brinkster but if I try to set it up with other hosting companies I can't get the database connection to work.
Brinkster requires the use of ADODB components (this is where I'm going to sound like I don't know anything) so my entire CMS is built around using these. I have found that most hosting companies don't support ADODB.
So my question is...is there an easy way to set up ADODB on a webserver so that I don't need to change my whole app?
Any help or more information on this topic will be much appreciated.
Thanks in advance,
Here is the connection script I use for Brinkster(modified):
$conn = new COM('ADODB.Connection');
$conn->Open("DRIVER={MySQL ODBC 3.51 Driver}; SERVER=server;DATABASE=database;UID=user;PWD=password;");