01.02.2014, 22:56
Depends what website structure you use, especially as its php code, keep copyright info at footer and content in pages folder and add them to website as includes.
example
url would be examplesite.com/?page=contacts
//Header
$page = $_GET['page'];
include('pages/'.$page);
//Footer where you show copyright.
example
url would be examplesite.com/?page=contacts
//Header
$page = $_GET['page'];
include('pages/'.$page);
//Footer where you show copyright.

