Hi,
Is there anyway I can create a countdown that allows me to count the number of days left this month without the weekdays?
I'm a real noob so bear with me...haha but this is what I have so far
<?php
$num = cal_days_in_month(CAL_GREGORIAN, date("n"), 2005); //
echo "You have $num days left this month.";
?>