Copywriting my first website
#1
Posted 02 May 2011 - 06:14 PM
~Thanks
#2
Posted 02 May 2011 - 06:19 PM
Not sure why you would put next year's date on your copyright notice. Why not just update it annually so that the current year is covered?
#3
Posted 02 May 2011 - 06:29 PM
When you create a website you can place a copyright notice on it to let others know that you own the copyright. This is usually done by using the © symbol, name of the copyright owner and the year the work was created.
You cannot claim to own copyright from previous year unless that is the year the work was created.
Everything you need to know about copyright can be found on the IPO website: http://www.ipo.gov.uk/types/copy.htm
#6
Posted 02 May 2011 - 08:35 PM
Gibson, on 02 May 2011 - 08:02 PM, said:
I wrote this code a short while ago, feel free to use it
<?php
/*
* www.iaintodd.co.uk
*/
function copyright($year) {
if(is_numeric($year) AND is_int($year)) { // Is the year an integer number?
echo "© Copyright ";
if($year == date(Y)) {
echo $year;
}
else {
echo $year." - ".date(Y);
}
}
else {echo "Please enter a year as a number"; }
} ?>
and to use it simply do this:
<?php copyright(2011); ?>
This post has been edited by itodd: 02 May 2011 - 08:36 PM
#7
Posted 02 May 2011 - 11:22 PM
© <?php echo date("Y"); ?> YoursiteAlso if you're located in the US you should read up on this: http://www.copyright...aq-protect.html
#8
Posted 02 May 2011 - 11:31 PM
Sazzad, on 02 May 2011 - 11:22 PM, said:
© <?php echo date("Y"); ?> YoursiteOf course, but my code will keep the year of creation which is one of the the most important factors regarding copyright, documenting when the work was created.
#9
Posted 03 May 2011 - 06:32 AM
© – <script type="text/javascript"> var cTime = new Date(); document.write(cTime.getFullYear()); </script>
#10
Posted 03 May 2011 - 08:15 AM
This post has been edited by Beavy: 03 May 2011 - 08:15 AM
#11
Posted 03 May 2011 - 08:31 AM
- ← Copy Corner: Part 6
- Copywriting
- The $105 Fix That Could Protect You From Copyright-Troll Lawsuits →
Help





















