Vinsanity Posted January 15, 2007 Share Posted January 15, 2007 how to display the data similiar to window explorer format, like show the key field at the left frame and when clicked on it then the details of it will be display at the main frame... is it possible to achieve... need help from u all guys... any help will be appreciated... Quote Link to comment Share on other sites More sharing options...
OOP Posted January 15, 2007 Share Posted January 15, 2007 If i got you right, then yes you can do this using the HTML frameset tag...you should name the frames within this frameset and then in your link you can specify the traget frame in which your new document should be displayed.for example, define your frames layout:[code]<frameset cols="80%,*" frameborder="no" border="0" framespacing="0"> <frame src="index.php?action=main" name="main" /> <frame src="index.php?action=menu" name="menu" /></frameset>[/code]then in your link you can do somthing like this to open the document in the menu farme[code]<a href="" target="main">your link text</>[/code]or you can use the <base> tag as well in your HTML head Quote Link to comment Share on other sites More sharing options...
Vinsanity Posted January 15, 2007 Author Share Posted January 15, 2007 i do understand with the frame method but the problem is how to make the key data possible to click and to show the details... do i need to do it with array??? bcos i wan it to be able to show the details of the certain row... Quote Link to comment 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.