earl cabanig
earl cabanig

Reputation: 53

What does this icon mean

What does this icon mean. I know my question must be answer even without the image but how hahaha, Im creating a database, do I need additional code in my php to create connection with my database? "fcm" and "fcm_db" are my databases, I created it and I think somehow it auto generated that "fcm" that I highlightened.enter image description here

Upvotes: 1

Views: 83

Answers (2)

Reagan Gallant
Reagan Gallant

Reputation: 863

It is a Group icon.

It displays when two or more databases start with the same name (prefix). It has no effect on the database connection or anything.

Upvotes: 2

LUI
LUI

Reputation: 11

For your php code you need to specify the server where your database is located, then the username, and password this an example:

$dbname="fcm";
$servername="localhost"
$username = "root";
$password = "";
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
}
else
$conn->query($sql);

Upvotes: 1

Related Questions