1
0
mirror of https://gitlab.com/JKANetwork/CheckServer.git synced 2026-02-15 01:31:37 +01:00

Version 0.9.1 fix before release

This commit is contained in:
2017-12-28 23:38:33 +01:00
parent 3ded2a052c
commit 374bd97a91
2 changed files with 27 additions and 8 deletions

View File

@@ -15,9 +15,8 @@ switch($type){
case 'mysqli':
$dbUser = $_POST['dbcode_user'];
$dbPass = $_POST['dbcode_pass'];
$dbDb = $_POST['dbcode_db'];
$file = '<?php
mysqli_connect("'.$dbHost.'","'.$dbUser.'","'.$dbPass.'","'.$dbDb.'") or die("FAIL");
mysqli_connect("'.$dbHost.'","'.$dbUser.'","'.$dbPass.'",) or die("FAIL");
die("OK");
?>';
break;