Difference between revisions of "JRComputersWiki:Copyrights"
Jump to navigation
Jump to search
(Created page with "© 2001 - 2015 Jamie D. Rubinstein - Dawgland.com - J.R. Computers. All rights reserved.") |
|||
Line 1: | Line 1: | ||
− | + | <?php | |
+ | $start_year = "1992"; | ||
+ | $current_year = date('Y'); | ||
+ | $owner = "Jamie D. Rubinstein"; | ||
+ | echo "This is a test of how to create a dynamic copyright satement.<br /><br /><br />"; | ||
+ | echo "Copyright © $start_year - $current_year $owner. All rights reserved.  "; | ||
+ | echo "This document or any portion thereof may not be reproduced or used in any manner whatsoever without the express written permission of $owner.<br />"; | ||
+ | ?> |
Revision as of 20:46, 25 December 2015
<?php
$start_year = "1992";
$current_year = date('Y');
$owner = "Jamie D. Rubinstein";
echo "This is a test of how to create a dynamic copyright satement.
";
echo "Copyright © $start_year - $current_year $owner. All rights reserved.  ";
echo "This document or any portion thereof may not be reproduced or used in any manner whatsoever without the express written permission of $owner.
";
?>