Wizet
New Member
- Messages
- 644
- Reaction score
- 0
- Points
- 0
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:
PHP:
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
And on my config.php file it only contains the following from lines 1-12:
PHP:
<?php
$mysqluser = "censored";
$mysqlpass = "censored";
$mysqldb = "censored";
$mysqlserver = "localhost";
function sha512($input){
$sha512 = hash('SHA512', $input);
return $sha512;
}