Kura or littlebit can ya guys help me a bit here, the hack works great, but one problem... my navigational buttons on my header uses rollover images... how would i implement this? i tried copying some of the code from my header into this hack and tried adding the necessary " to it, but its not showing up the images at all... here's the code...
PHP Code:
if($bbuserinfo['userid'] != 0) {
$reg_ucp = "<a href=\"usercp.php?s=$session[sessionhash]\">".
"<a onmouseover=\"changeImages('image1', 'image1a')\" onmouseout=\"changeImages('image1', 'image1b')\" img name=\"image1\" src=\"{imagesfolder}/usercp.gif\" ".
"width=\"50\" ".
"height=\"25\" ".
"alt=\"Here you can view your subscribed threads, work with private messages and edit your profile and preferences\" border=\"0\"></a>";
}else{
$reg_ucp = "<a href=\"register.php?s=$session[sessionhash]&action=signup\">".
"<a onmouseover=\"changeImages('image2', 'image2a')\" onmouseout=\"changeImages('image2', 'image2b')\" ".
"img name=\"image2\" ".
"src=\"{imagesfolder}/register.gif\" ".
"width=\"50\" ".
"height=\"25\" ".
"alt=\"Register an account\" ".
"border=\"0\"></a>";
hrmmm?