Jump to content

php help... display format


Vinsanity

Recommended Posts

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...
Link to comment
Share on other sites

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


Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.