Answers for "config() in php"

PHP
7

php configuration

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

config file php

<?php

return (object) array(
    'host' => 'localhost',
    'username' => 'root',
    'pass' => 'password',
    'database' => 'db'
);

?>
Posted by: Guest on December-02-2019
0

php config file

<?php
 
/*
 * All database connection variables
 */
 
define('DB_USER', "root"); // db user
define('DB_PASSWORD', ""); // db password (mention your db password here)
define('DB_DATABASE', "androidhive"); // database name
define('DB_SERVER', "localhost"); // db server
?>
Posted by: Guest on July-13-2021

Browse Popular Code Answers by Language