Results 1 to 7 of 7

Thread: Urgent Help Required!

  1. #1
    Poster
    Join Date
    Oct 2003
    Location
    UK
    Posts
    1,158
    Hi, if you have a basic html page? Then you make a table on it.... i want 1 section to be part of a different html page, so i can easily update this section by just changing that external page.

    How?

  2. Internet, Programming and Graphics   -   #2
    HeavyMetalParkingLot's Avatar Poster
    Join Date
    Jun 2003
    Location
    Manhattan
    Posts
    1,810

  3. Internet, Programming and Graphics   -   #3
    BANNED
    Join Date
    Jul 2003
    Location
    Guatemala
    Posts
    4,044
    Use FRAMES. Each frame in the page points to another page, which is displayed accordingly. That way, you can have a frame that you update (just newsframe.html) instead of your index.html

    Look for tutorials on this.

  4. Internet, Programming and Graphics   -   #4
    Poster
    Join Date
    Jul 2003
    Posts
    1,548
    Do not use frames

    Framesets structures have been used for long. They provided a convenient way to spare bandwidth in the early times of the Internet. They were also practical for dynamic languages as PHP (Learn it, Use it, Love it ;-).

    They should not be used any more for they are :

    Outdated : CSS provide features to structure a page in the same way. Just set the selector "overflow:scroll" on a positionned <DIV> tag. Five years ago, I would have coded this site with three frames, but it was five years ago.

    Nearly deprecated.
    As disabled people can&#39;t access to a framed structure as a whole, but frame after frame, the W3C, through the WAI stated that frame should be avoided. However, if you really need to use frames, please limitate them to three. Above, a disabled person just can&#39;t recall the relationships between frames.

    Unreadable by the robots of the search engines. You will have to create a fake, unreadable to humans <NOFRAME> to have your framed pages indexed.

  5. Internet, Programming and Graphics   -   #5
    BANNED
    Join Date
    Jul 2003
    Location
    Guatemala
    Posts
    4,044
    Originally posted by djweiser@6 March 2004 - 07:45
    basic html page?


    He&#39;s obviously learning HTML (not even learning, just fiddling), since frames are somewhat basic in HTML.

    He can&#39;t go straight up to CSS if he doesn&#39;t have the basics. It&#39;s like trying to write a program in Java without knowing about its structure or classes.

    By the way, post the source next time

  6. Internet, Programming and Graphics   -   #6
    Poster
    Join Date
    Jul 2003
    Posts
    1,548
    He has to know all the pros and cons so he can make the right decision, sorry about the Source:

    HERE IT ITS&#33;

    Hope it helps&#33;

  7. Internet, Programming and Graphics   -   #7
    h1
    Guest
    None of you are answering his question.

    In SSI, do this...
    Code:
    &#60;&#33;--#include virtual=&#34;table_to_include.html&#34;--&#62;
    ...and in PHP, do this...
    Code:
    &#60;?php include&#40;&#39;table_to_include.html&#39;&#41;; ?&#62;
    That&#39;s all there is to it&#33;

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
  •