LRR/get_mysql_credentials.php

8 lines
207 B
PHP

<?php
$csv = array_map('str_getcsv', file('./../../lrr_submission/KeepItSafe.txt'));
$mysql_username = $csv[0][0];
$mysql_password = $csv[0][1];
//append password for Lecturer and TA
$salt = "Lrr@2022" ;
?>