copyright stamps [software generated]

Discussion in 'Legal Issues' started by QiSoftware, Jan 1, 2011.

  1. #1
    Every year around this time-- I update site pages to show the new year for the copyright stamp. I want to make this an automated end year using Javascript.

    This is probably a stupid question-- how does the legal community view software generated time stamps as related to digital/online copyright stamps?

    One problem: Javascript is dependent on the computer the page is viewed on-- so it maybe the date of the system is off-- and therefore the copyright stamp..

    Q..
     
    QiSoftware, Jan 1, 2011 IP
  2. seomaker

    seomaker Well-Known Member

    Messages:
    160
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    111
    #2
    u can use php script. its based on server time. try a search for it
     
    seomaker, Jan 1, 2011 IP
  3. AstarothSolutions

    AstarothSolutions Peon

    Messages:
    2,680
    Likes Received:
    77
    Best Answers:
    0
    Trophy Points:
    0
    #3
    In what sense the "legal community" views it?

    Copyright is automatic and does not require any statement or stamp to enforce it.

    If your wanting to keep it "up to date" then your best option is to do it serverside thus creating consistency and avoiding any "issue" for those with javascript turned off, the international date line, wrongly set computer clocks etc
     
    AstarothSolutions, Jan 4, 2011 IP
  4. QiSoftware

    QiSoftware Well-Known Member

    Messages:
    805
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    158
    #4
    Thanks AstarothSolutions.

    Q.
     
    QiSoftware, Jan 4, 2011 IP
  5. urmick96

    urmick96 Active Member

    Messages:
    236
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    55
    #5
    Instead of the current year ec 2011 put the below PHP script in there it will automaticly show the current year

    <?php
    $year = date('Y');
    echo $year;
    ?>
     
    urmick96, Jan 8, 2011 IP