Answers for "config database php example"

PHP
6

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

Browse Popular Code Answers by Language