If you are going to be using the database functionality of FORMfields or TableHelpers then:
- Use an FTP client to download the file http://yourdomain.com/FORMfields/dbHelpers.php.
- Open this file in a text editor and set DB_HOST, DB_USER, DB_PWD, and DB_NAME to your database’s configuration. If you are unsure as to what these values should be, please refer to your hosting company’s control panel or contact your hosting company’s tech support.
- DB_HOST - The hostname of your database
- DB_USER - The username for your database account
- DB_PWD - The password for your database account
- DB_NAME - The name of your database
For example, your modification to dbHelpers.php should look something like:
define ("DB_HOST", "localhost");
define ("DB_NAME", "mydatabase");
define ("DB_USER", "myuser");
define ("DB_PWD", "mypwd");
- FTP dbHelpers.php back to your website.