Question
What should i use as a MySQL connection string to connect my script to your server?
Answer
A connection string is a sequence of variables which will allow your code to connect to your specific MySQL database and authenticate
Summary
Configuration
You can use the following configuration settings
Version: MySQL 5
Username: cpUsername_dbName
Database Name: cpUsername_dbUsername
Password: The password for cpUsername_dbUsername
Hostaddress: localhost
Port: 3306
Database Name: cpUsername_dbUsername
Password: The password for cpUsername_dbUsername
Hostaddress: localhost
Port: 3306
Perl
$dbh = DBI->connect("DBI:mysql:cpUsername_dbName:localhost","cpUsername_dbUsername","password");
PHP
$link = mysqli_connect("myhost","myuser","mypassw","mydb") or die("Error " . mysqli_error($link));
Still need help?
If you need further assistance than this entry provided, please, do open up a support ticket, we are here to help you out