something here is wrong but I can't find it. Plz help.
And I have a question: Why should we close the connection in the end? Is it a necessity?
$conn = new mysqli($dbConfig['DB_HOST'], $dbConfig['DB_USER'], $dbConfig['DB_PASSWORD'], $dbConfig['DB_NAME']);
if ($conn->connect_errno) {
    $errstr = printf("connection has been failed: %s", $conn->connect_error);
    echo $errstr;
    exit();
}
printf("you are connected to the <b><i>%s</i></b> database successfully.<br>", $dbConfig['DB_NAME']);
$result = $conn->prepare("select * from customers");
if (!$result) 
    printf('errno: %d, error: %s', $result->errno, $result->error);
$b = $result -> execute();
if (!$b) 
    echo "execute dosn't work";
$rows = $result->fetch_array(1);
printf("Name is: %s\n <br>",$rows['name']);
The code has updated!
 
    