PDA

View Full Version : [PHP] Help Error



Luno1599
21-12-2007, 10:05 PM
Hey

Whats this error mean?

Fatal error: Cannot redeclare bbcode() (previously declared in /home/master/public_html/v7/account/check.php:164) in /home/master/public_html/v7/account/check.php on line 195


on line 195 is this:


function bbcode($text)

06jack07
21-12-2007, 10:12 PM
you restarted your servers?

Forge
21-12-2007, 10:19 PM
function bbcode('$text');
Try that

MrCraig
21-12-2007, 10:44 PM
Find



function bbcode($text)
{
//Some Code in Here
}


And replace with


/*
function bbcode($text)
{
//Some Code in Here
}
*/


Its because youve already stated the function bbcode in your functions file, so it gets confused if you write it again.

The edit ive made disables the 2nd bbcode function, so it should work.

Forge
21-12-2007, 10:45 PM
Oh sugerlumps. There's me thinking it was a variable :P

Want to hide these adverts? Register an account for free!