Answers for "config php what is"

PHP
7

php configuration

phpinfo();
Posted by: Guest on February-20-2020
1

how to make a config file for php

<?php

$server = "localhost";
$username = "root";
$password = "";
$db = "your_db_name";


$conn = mysqli_connect($server, $username, $password, $db);

if(!$conn){
    die('Error in connecting to server or Database: ');
}
Posted by: Guest on April-18-2022

Browse Popular Code Answers by Language