Im pretty sure, and someone please correct me if I'm wrong. That you can simply do the following:
<?php
$expire = date("Y-m-d");
$current_date = date("Y-m-d");
if($expire > $current_date) { echo 'Expired'; } else { echo 'Welcome'; }
?>
Give it a try.
Give it a try, see hat happens.