Results 1 to 6 of 6

Thread: Web Page Within Another Web Page? How

  1. #1
    I want to put a link in a page, and that site open up on the same page, so I keep all my side bar and menus..etc But how?



  2. Internet, Programming and Graphics   -   #2
    4play's Avatar knob jockey
    Join Date
    Jan 2003
    Location
    London
    Age
    41
    Posts
    3,824
    your using frames right ?
    declare the frames like below
    Code:
    <frameset rows="80,*" cols="152,627*" frameborder="NO" border="0" framespacing="0"> 
      <frame name="cornerFrame" scrolling="NO" noresize src="home.shtml" >
      <frame name="topFrame" scrolling="NO" noresize src="banner.html" >
      <frame name="leftFrame" scrolling="NO" noresize src="links.html">
      <frame name="mainFrame" src="main.html">
    </frameset>
    then you use the target attribute to control which fram you want the page to open in
    Code:
    <a href="prog.html" target="mainFrame">Tutorials</a>

  3. Internet, Programming and Graphics   -   #3
    h1
    Guest
    Or...
    Code:
    <a target="_self"></a>

  4. Internet, Programming and Graphics   -   #4
    Poster
    Join Date
    Oct 2003
    Location
    Montevideo,Uruguay
    Posts
    983
    or just use php frames are evil,they really fuck up your site on some search engines and it masks the URL among others

  5. Internet, Programming and Graphics   -   #5
    h1
    Guest
    /agrees with CoolMac, frames are great in concept and crap in execution.

  6. Internet, Programming and Graphics   -   #6
    Poster
    Join Date
    Oct 2003
    Location
    Montevideo,Uruguay
    Posts
    983
    plus,you won't appear on certain search engines (you will on google of course) and i agree that URL masking the greatest crap around

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •