Im getting this error message "Parse error: syntax error, unexpected $end" Can anyone point out this error. Thank you.
<?php
function CopyrightCheck($crCheck) {
$crCheck = stripslashes($crCheck);
$Copyright_Notice = "Copyright © 2000-2009 YourWebsite.com (Your Script). All Rights Reserved";
if ($crCheck !== $Copyright_Notice) {
return COPYRIGHT_NOT_VALID;
} else {
return COPYRIGHT_IS_VALID;
}
?>