Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Updating website content help?  (Read 3796 times)

0 Members and 1 Guest are viewing this topic.

zampo

    Topic Starter


    Starter

    Updating website content help?
    « on: October 25, 2009, 02:36:16 PM »
    Hey

    I have as website for my Theatre company and on each page there is a "Latest News" box. and the info in the box is the same on every page.

    At the moment, every time I update the latest news, I have to go into each of the pages editors to update the info.
    What i'd like to do is use a code so that when i update it on one page, it does it on all.. Cut down on time...

    Can anyone give me an insight into what code i cna use to do this?

    My site is HTML coded

    Many thanks

    Rhys

    Broni


      Mastermind
    • Kraków my love :)
    • Thanked: 614
      • Computer Help Forum
    • Computer: Specs
    • Experience: Experienced
    • OS: Windows 8
    Re: Updating website content help?
    « Reply #1 on: October 25, 2009, 03:09:29 PM »
    Your site address?
    What type of the board do you have?

    zampo

      Topic Starter


      Starter

      Re: Updating website content help?
      « Reply #2 on: October 25, 2009, 03:10:43 PM »
      www.phoenixartsdg.co.uk

      Board?     

      I do it all through freewebs if that helps?


      Broni


        Mastermind
      • Kraków my love :)
      • Thanked: 614
        • Computer Help Forum
      • Computer: Specs
      • Experience: Experienced
      • OS: Windows 8
      Re: Updating website content help?
      « Reply #3 on: October 25, 2009, 03:18:51 PM »
      I'm not very familiar with freewebs,  but I found this on their site:

      Quote
      What programming languages can I use?

      Premium service customers can use CGI/Perl. However, this type of programming is not available for free account holders, nor do we support the use of MySQL, MSACCESS or PHP. You can, however, link to remote scripts from your website.

      Your editing powers are pretty limited then.

      I'm pretty sure, someone will chime in here with some script, which will help you out.

      zampo

        Topic Starter


        Starter

        Re: Updating website content help?
        « Reply #4 on: October 25, 2009, 03:26:56 PM »
        I have it on settings so that I code everything myself, instead of using their limiting editors...

        My entire website is in HTML coding.

        Broni


          Mastermind
        • Kraków my love :)
        • Thanked: 614
          • Computer Help Forum
        • Computer: Specs
        • Experience: Experienced
        • OS: Windows 8
        Re: Updating website content help?
        « Reply #5 on: October 25, 2009, 03:30:15 PM »
        There are few guys around here, who can help you out with that. Just be patient.

        zampo

          Topic Starter


          Starter

          Re: Updating website content help?
          « Reply #6 on: October 25, 2009, 03:39:54 PM »
          Thanks :)

          BC_Programmer


            Mastermind
          • Typing is no substitute for thinking.
          • Thanked: 1140
            • Yes
            • Yes
            • BC-Programming.com
          • Certifications: List
          • Computer: Specs
          • Experience: Beginner
          • OS: Windows 11
          Re: Updating website content help?
          « Reply #7 on: October 26, 2009, 03:42:38 AM »
          with only HTML and client-side processing your options are limited, but you can use a "IFRAME" element.

          For example, make a news page- say, news.html. Then you can insert it into each of your pages with <IFRAME SRC="news.html">
          I was trying to dereference Null Pointers before it was cool.

          kpac

          • Web moderator
          • Moderator


          • Hacker

          • kpac®
          • Thanked: 184
            • Yes
            • Yes
            • Yes
          • Certifications: List
          • Computer: Specs
          • Experience: Expert
          • OS: Windows 7
          Re: Updating website content help?
          « Reply #8 on: October 26, 2009, 05:46:21 AM »
          ARGH! Use small tags! ;D

          <iframe src="news.html"></iframe>

          I don't know why people started using CAPS for tags in the first place because it takes longer to type out anyway!

          BC_Programmer


            Mastermind
          • Typing is no substitute for thinking.
          • Thanked: 1140
            • Yes
            • Yes
            • BC-Programming.com
          • Certifications: List
          • Computer: Specs
          • Experience: Beginner
          • OS: Windows 11
          Re: Updating website content help?
          « Reply #9 on: October 26, 2009, 07:18:19 AM »
          CAPS isused to be considered good practice to make it easy to differentiate what is content and what is markup. The "it takes longer to type" argument is redundant. It also takes longer to type out hungarian notation, like "GFlIsFirstInstance" or "MStrExpression" But people still use it. And personally it has no affect on me anyway- after all, typing the opening < requires a shift.

          It was originally part of the spec, with HTML 4 it is "recommended" to use lowercase tags. XHTML requires it. Honestly though, XHTML is simply ludicrous. It doesn't add anything beneficial over HTML itself aside  from allowing the page to be validated by simply using an XML validator and the proper XML Schema. And realistically it just makes that easier, HTML is validated as well, but the rules regarding some tags (break, hard rule, paragraph) are lax and an ending tag isn't required. and for things like br, where content wouldn't make any sense anyway, it makes no sense to even allow content, XHTML would account for forcing the use of either ending tags or a traling / to indicate the tag is empty. I cannot even guess what the X in XHTML stands  for, but it isn't any more eXtensible then HTML itself.
          I was trying to dereference Null Pointers before it was cool.

          kpac

          • Web moderator
          • Moderator


          • Hacker

          • kpac®
          • Thanked: 184
            • Yes
            • Yes
            • Yes
          • Certifications: List
          • Computer: Specs
          • Experience: Expert
          • OS: Windows 7
          Re: Updating website content help?
          « Reply #10 on: October 26, 2009, 10:11:15 AM »
          I should have known that was coming.

          To some extent I agree, but then again the Web is evolving - then comes HTML5.

          Geek-9pm


            Mastermind
          • Geek After Dark
          • Thanked: 1026
            • Gekk9pm bnlog
          • Certifications: List
          • Computer: Specs
          • Experience: Expert
          • OS: Windows 10
          Re: Updating website content help?
          « Reply #11 on: October 26, 2009, 11:56:00 AM »
          Quote
          I should have known that was coming.
          Yes. it is easy to get BC started.  8)