Results 1 to 2 of 2

Thread: Options to frames

  1. #1
    Join Date
    Oct 2008
    Posts
    9

    Options to frames

    I am starting in the web development arena and I have a question. In my playing with web design, I have always used frames to simplify the creation of a site and reduce duplicate code from each page such as navigation, header, footer. Now, the class I am taking is prohibiting the use of frames but not offering another option to accomplish the same thing. The teach said it could be done using asp or php or some other scripting languages but will not go farther than that.

    Could someone point me to a site, tutorial, book, or something that will get me started?

    I ask, becasuse for our class project, we are to create a commercial like site with approximately 10 - 12 pages and I feel that duplicating the navigation and similar items is a bit tedious.

    Thank you advance for any help you can give.

  2. #2
    Join Date
    Feb 2006
    Location
    Salisbury UK
    Posts
    4,332
    There are two methods shown here:-
    http://www.wickham43.net/serversideincludes.shtml
    The first paragraph is general and applies to both methods. The SHTML method is not used much now as PHP "includes" are much more popular and a PHP page can do lots of other things like web forms.

    The PHP method means that you have several main pages and you insert common sections like a header or menu or footer into every main page with PHP code like
    <?php include ("header.inc"); ?>
    which links from just one file for each common section so that if a menu link changes, you only have one "include" file to change and it gets inserted in every other main page. The main pages with the php code must be given .php extension, not .html
    Code downloaded to my PC will be deleted in due course.
    WIN7; IE9, Firefox, Opera, Chrome and Safari for Windows; screen resolution usually 1366*768.
    Also IE6 on W98 with 800*600 and IE8 on Vista 1440*900.

Similar Threads

  1. Affecting 2 Frames from another Frame on Separate Page... please help
    By semiotically in forum Client & Server Side Scripting (PHP, ASP, JavaScript)
    Replies: 1
    Last Post: 10 Jul 2009, 08:44 PM
  2. Affecting 2 Frames on Index Page from External Page
    By semiotically in forum Client & Server Side Scripting (PHP, ASP, JavaScript)
    Replies: 1
    Last Post: 24 Jun 2009, 05:51 AM

Posting Permissions

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