Hyvor Developer
  Home   Download   Copy
Code
<?php
$day = date('j'); // day of the month
if ($day < 15) {
	echo 'You are spending the first half of the month'; 
} else {
	echo 'You are spending the last half of the month';
}
Result