You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
305 B
9 lines
305 B
<?php
|
|
$username=$_ENV["CODEFIRST_CLIENTDRONE_ENV_INNODB_USER"];
|
|
$host=$_ENV["CODEFIRST_CLIENTDRONE_ENV_INNONDB_HOST"];
|
|
$password=$_ENV["CODEFIRST_CLIENTDRONE_ENV_INNODB_PASSWORD"];
|
|
$db_name=$_ENV["CODEFIRST_CLIENTDRONE_ENV_INNODB_DATABASE"];
|
|
|
|
$connect=mysqli_connect($host,$username,$password,$db_name);
|
|
|