Quote Originally Posted by Chris2009 View Post
any1 can tell me y am getting this errror wiv my code above:

[15-Aug-2011 23:55:51] PHP Fatal error: Cannot redeclare linkback() (previously declared in /home/warezrel/public_html/funcs.php:321) in /home/warezrel/public_html/funcs.php on line 321
That generally occurs when you add the function more then 1 times

For the file you are including use "include_once" or "require_once"

Or if that doesn't works then declare the function like this:

PHP Code: 
if(!function_exists('Soft2050Function')) {  
function 
definesoft2050function() {
     
// The blah shit of function   


Regards