purge08 Posted June 19, 2009 Share Posted June 19, 2009 i need help with frames in php. i know how to do it in html, but what i'm trying to do in php is the same. i am having 4 frames, a left one with a navbar, the top one with a logo, and the right one with the current time and other links to the forums, and i'm an trying to have the main frame to show up in the center frame when they click on a link while keeping the other three tables the same. meaning if they click on the profile link it will show the same three frames but the profile.php to show up in the center table. Quote Link to comment https://forums.phpfreaks.com/topic/162948-tableframe-help-for-php/ Share on other sites More sharing options...
swilla Posted June 20, 2009 Share Posted June 20, 2009 This is still an HTML problem since PHP basically outputs what you want into the html on the page. For this particular problem you just need to define the target property in your link. Here is an example: <a href="profile.php" target="main_frame">Profile</a> Quote Link to comment https://forums.phpfreaks.com/topic/162948-tableframe-help-for-php/#findComment-860126 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.