Hello. I am trying to edit my event registration site so that after the registration cut off date, the link will no longer be valid and it will display "registration closed" I cannot figure out the syntax error here.
<?
if ($registerend < NOW()){
print "Registration has ended";
}else{
print " <a href=\"/registration/new/register.php?id=<?php echo $event["id"]?>\">Click Here to Register</a>;
}
?>
Any suggestions?