Search
 
SCRIPT & CODE EXAMPLE
 

PHP

how to create config file in php

<?php
    $servername = 'localhost';
    $username   = 'root'; // Username
    $password   = ''; // Password
    $dbname     = "db_name";
    $conn       = mysqli_connect($servername,$username,$password,"$dbname");
    
    if(!$conn){
        die('Could not Connect MySql Server:' .mysql_error());
    }
?>
Comment

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: ');
}
Comment

config file php

<?php

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

?>
Comment

config file php

<?php

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

?>
  This allows you to use the object syntax when you include the php : 
$configs->host instead of $configs['host'].

Also, if your app has configs you need on the client side (like for an Angular app), 
you can have this config.php file contain all your configs 
  (centralized in one file instead of one for JavaScript and one for PHP). 
  The trick would then be to have another PHP file that would echo only the client side 
  info (to avoid showing info you don't want to show like database connection string).
  Call it say get_app_info.php :

<?php

    $configs = include('config.php');
    echo json_encode($configs->app_info);

?>

The above assuming your config.php contains an app_info parameter:

<?php

return (object) array(
    'host' => 'localhost',
    'username' => 'root',
    'pass' => 'password',
    'database' => 'db',
    'app_info' => array(
        'appName'=>"App Name",
        'appURL'=> "http://yourURL/#/"
    )
);

?>
So your database's info stays on the server side, 
but your app info is accessible from your JavaScript, 
with for example a $http.get('get_app_info.php').then(...); type of call.
Comment

create config value file in php

<?php
$config = array(
    "database" => "test",
    "user"     => "testUser"
);

function writeConfig( $filename, $config ) {
    $fh = fopen($filename, "w");
    if (!is_resource($fh)) {
        return false;
    }
    foreach ($config as $key => $value) {
        fwrite($fh, sprintf("%s = %s
", $key, $value));
    }
    fclose($fh);

    return true;
}

function readConfig( $filename ) {
    return parse_ini_file($filename, false, INI_SCANNER_NORMAL);
}

var_dump(writeConfig("test.ini", $config));
var_dump(readConfig("test.ini"));
Comment

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
?>
Comment

config in php

<?php 

$servername = "localhost";
$username = "root";
$password = "";

try {
  $conn = new PDO("mysql:host=$servername;dbname=crud", $username, $password);
} catch(PDOException $e) {
  echo "Connection failed: " . $e->getMessage();
  exit();
}

$errors = ['result' =>'', 'email'=>'', 'password'=>'', 'login'=>'', 'signup'=>''];

session_start();

require('controllers/contacts-controller.php');

require('controllers/auth-controller.php');





?>
Comment

PREVIOUS NEXT
Code Example
Php :: wordpress give query a unique identity 
Php :: desactivar estilos globales wordpress 5.9 
Php :: laravel-websockets 403 forbidden error 
Php :: Laravel A row must be an array or a TableSeparator instance. 
Php :: codeigniter query Profiling 
Php :: date format in php 
Php :: laravel validateexception no error description 
Php :: laravel project preparation,laravel project create 
Php :: laravel gigapay delete employee 
Php :: get_html_translation_table (PHP 4, PHP 5, PHP 7, PHP 8) get_html_translation_table — Returns the translation table 
Php :: PHP OOP - Traits 
Php :: Augmenter la dimension des fichiers WP 
Php :: remove nul value aray php 
Php :: display woocommerce review using specific id 
Php :: imagelib thourgh class in codeigniter 
Php :: why are my css properties not being applied to php file 
Php :: remove ul container from wp_nav_menu 
Php :: how to convert php code to a string 
Php :: if ip in the array redirect php 
Php :: custome route to a page with dynamic parameters wordpress 
Php :: laravel gigapay get single payout 
Php :: checks whether the session is set or not, if not it will redirect the user to login page. 
Php :: Laravel retrieving aggregates 
Php :: how to give dynamic value in onlick in php 
Php :: php know if city exist gmap api 
Php :: shop manager Redirect @ WooCommerce 
Php :: laravel store mail driver info in database 
Php :: x-default wpml canonical alternate hreflang 
Php :: Insert Data using modal 
Php :: searching for new lines 
ADD CONTENT
Topic
Content
Source link
Name
1+9 =