diff --git a/Header.php b/Header.php index e867e1e..a5787c3 100644 --- a/Header.php +++ b/Header.php @@ -3,7 +3,8 @@ session_start(); error_reporting(0); date_default_timezone_set('Asia/Shanghai'); -$con = mysqli_connect("localhost","username","password","lrr"); +include "get_mysql_credentials.php"; +$con = mysqli_connect("localhost", $mysql_username, $mysql_password, "lrr"); // Check database connection if (mysqli_connect_errno()) { diff --git a/Script.php b/Script.php index b0225ea..cc9fa3b 100644 --- a/Script.php +++ b/Script.php @@ -12,7 +12,8 @@ session_start(); date_default_timezone_set('Asia/Shanghai'); // Connect to MySQL database -$con = mysqli_connect("localhost","username","password","lrr"); +include "get_mysql_credentials.php"; +$con = mysqli_connect("localhost", $mysql_username, $mysql_password, "lrr"); // Check connection if (mysqli_connect_errno()) diff --git a/batch_insert.php b/batch_insert.php index 664bf66..00dad1b 100644 --- a/batch_insert.php +++ b/batch_insert.php @@ -2,9 +2,12 @@ // Code contributed by Xu Xiaopeng and his team (https://github.com/lanlab-org/LRR/pull/39/files#diff-b69ba96bf0e469383b373e8c9de257c0) //数据库信息 + + +include "get_mysql_credentials.php"; $servername = "localhost"; -$username = "username"; -$password = "password"; +$username = $mysql_username; +$password = $mysql_password; $dbname = "lrr"; // 创建连接 @@ -52,4 +55,4 @@ $result->free(); //中断连接 mysqli_close($conn); -?> \ No newline at end of file +?> diff --git a/get_mysql_credentials.php b/get_mysql_credentials.php new file mode 100644 index 0000000..c520376 --- /dev/null +++ b/get_mysql_credentials.php @@ -0,0 +1,5 @@ + diff --git a/test.php b/test.php deleted file mode 100644 index 4780387..0000000 --- a/test.php +++ /dev/null @@ -1,61 +0,0 @@ -Hash2=".$hashed_password2; - - - - -$con=mysqli_connect("localhost","username","password","lrr"); -// Check connection -if (mysqli_connect_errno()) - { - echo "Failed to connect to MySQL: " . mysqli_connect_error(); - } -else -{ -echo "Connected "; -} - -mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT); -$query = "SELECT * from users_table;"; -$result = mysqli_query($con, $query); - - -if (mysqli_num_rows($result) > 0) { - - echo "
{$row['Password']} | {$row['Email']} | "; - //echo "