So on my index.php page I get a declaration error:
Fatal error: Cannot redeclare sha512() (previously declared in /home/flownyx/public_html/lacydic/config.php:8) in /home/flownyx/public_html/lacydic/config.php on line 11[/PHP]
And on my config.php file it only contains the following from lines 1-12:
Question
nycmattw
So on my index.php page I get a declaration error:
And on my config.php file it only contains the following from lines 1-12:
$mysqluser = "censored";
$mysqlpass = "censored";
$mysqldb = "censored";
$mysqlserver = "localhost";
function sha512($input){
$sha512 = hash('SHA512', $input);
return $sha512;
}
[/PHP]
Link to comment
Share on other sites
5 answers to this question
Recommended Posts