that function counts the dates of the month i.e. 28, 30 or 31 depending on the month....
now what i need to do is i have a $month string set in the title bar, so page.php?month=$month
now if do
$days_of_month = date("t");
it always returns the value of 30 becuase ti's april.
and if i do it this way
$days_in_month = date($month, "t");
nothing shows up at all.
how can i change the way it reads date("t"); to read for $month.
thanks alot