Lav filen connection.php med alle, der har tangence med mysql-forbindelse, og efter annonce i hver fil, hvor du bruger mysql, forespørg linjen include_once('connection.php');
eller du kan have include_once('some_folder\connection.php');
Hvis du er nybegynder, kan du bruge denne tilstand til at oprette forbindelse til DB
mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
$link = mysqli_connect('localhost', 'mysql_user', 'mysql_password');
echo 'Connected successfully';
$res = mysqli_query($link, "CREATE TEMPORARY TABLE myCity LIKE City");
http://php.net/manual/en/mysqli.query.php