simple javascript function should fix that problem :
?><script language="javascript"> top.location.replace("http://forums.xisto.com/no_longer_exists/
And about your error. It's because you have allready echo an output that is produced by your error. error = output some html code.
Isn't the correct use of include isinclude("filename.php"); ?I allways get error when using include with parameter like :include("filename.php?get=1");Because php read that as open a 'filename.php?get=1' file that you dont have. But you only have 'filename.php'
You put it in a wrong order dude.Jut change che script from :
$display .= '<option value="' . $db_catid . '">' . $db_catname . '</option>';
echo "$display\n";
to :
$diaplay = '<option value="' . $db_catid . '"> . $display' . $db_catname . '</option>';
echo "$display\n";
And that should fix your problem.