I have a news system installed on my server, When i try to go to the page to create news i get this little error,
Fatal error: Cannot redeclare func_mysqlconnect() (previously declared in /home/geistyc/public_html/clannews/config.php:33) in /home/geistyc/public_html/clannews/config.php on line 32
Im not quite sure what the problem is, but here is the original code that connects to the db
function func_mysqlconnect()
{global $dbname;
global $sqlhost;
global $sqlusername;
global $sqlpassword;
global $conn;
$conn =mysql_connect($sqlhost,$sqlusername,$sqlpassword) or die ("<font
face=verdana>Error:".mysql_error());
$db = mysql_select_db($dbname) or die ("<font face=verdana>Error:
".mysql_error());
}
I am very confused and unsure of how to fix this problem, can anyonre give me a solution?