Jump to content

php help... display format


Vinsanity

Recommended Posts

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


Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.