11 lines
196 B
Plaintext
Executable File
11 lines
196 B
Plaintext
Executable File
<?php #var/00_mysql.php
|
|
|
|
//Mysql login
|
|
$DBHOST = "localhost";
|
|
$DBUSER = "";
|
|
$DBPASS = "";
|
|
$DBNAME = "";
|
|
|
|
$mysqli = new mysqli($DBHOST, $DBUSER, $DBPASS, $DBNAME);
|
|
$mysqli->set_charset("utf8mb4");
|