Difference between revisions of "JRComputersWiki:Copyrights"

From TheBestLinux.com
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:
© 2001 - 2015 Jamie D. Rubinstein - Dawgland.com - J.R. Computers. All rights reserved.
+
<?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&nbsp;&copy;&nbsp;$start_year&nbsp;-&nbsp;$current_year&nbsp;&nbsp;$owner.&nbsp;&nbsp;All rights reserved.&nbsp;&nbsp";
 +
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. &nbsp"; echo "This document or any portion thereof may not be reproduced or used in any manner whatsoever without the express written permission of $owner.
"; ?>