I have successfully made a connection to my access database on my local computer but when I upload my config.php file which contains the connection string on my web server and when the insert command runs it displays a blank page without making entries to the database.
$conn = new COM ("ADODB.Connection")
or die("Cannot start ADO");
$connStr = "PROVIDER=Microsoft.Jet.OLEDB.4.0;Data Source=/onlineadmission.mdb;Jet OLEDB:Database Password=;";
$conn->open($connStr);
It works well on my local computer but not when uploaded.
Where is the problem?