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.
15 lines
324 B
15 lines
324 B
<?php
|
|
$username=CODEFIRST_CLIENTDRONE_ENV_INNODB_USER;
|
|
$host=CODEFIRST_CLIENTDRONE_ENV_INNONDB_HOST;
|
|
$password=CODEFIRST_CLIENTDRONE_ENV_INNODB_PASSWORD;
|
|
$db_name=CODEFIRST_CLIENTDRONE_ENV_INNODB_DATABASE;
|
|
|
|
$connect=mysqli_connect($host,$username,$password,$db_name);
|
|
/*
|
|
if(!$connect)
|
|
{
|
|
print "Connection Failed";
|
|
}
|
|
*/
|
|
|