View Single Post
Old 10-04-2012, 05:35 PM   PM User | #1
KoRe
New Coder

 
Join Date: Feb 2009
Posts: 22
Thanks: 2
Thanked 0 Times in 0 Posts
KoRe is an unknown quantity at this point
I have an issue need a little hand shouldnt be to hard.

I have an issue and i need to redirect a link that is not in an iframe, to a location that uses an iframe.

Confusing yes, so let me show you.

Example On that page you will see the block for "Forum statistics" Our newest member and then the persons name which is a link, I need this link to redirect to this page: Iframe

As you can see if the main page link is clicked it will load it up in the same window, i need it to some how redirect to that iframe..

I have to use Iframe because the integration with drupal.

PHP Code:
if (($row['session_viewonline']) || $auth->acl_get('u_viewonline')) {
              if (
$row['user_type'] <> USER_IGNORE) {
                
$user_online_link '<a href="' append_sid("{$phpbb_url}/memberlist.$phpEx"'mode=viewprofile&amp;u=' $row['user_id']) . '"' $user_colour '>' $user_online_link '</a>';
              }
              else {
                
$user_online_link = ($user_colour) ? '<span' $user_colour '>' $user_online_link '</span>' $user_online_link;
              }

              
$online_userlist .= ($online_userlist != '') ? ', ' $user_online_link $user_online_link;
            } 
Any help would be appreciated thx.
KoRe is offline   Reply With Quote