29.12.2014, 12:10
PHP код:
getdate(Year, Month, Day);
if(Month == 12 && Year == 2014 && Day <=29)
{
//Day is less than/equal to 29.
}
else
{
//Day is Greater than 29
}
getdate(Year, Month, Day);
if(Month == 12 && Year == 2014 && Day <=29)
{
//Day is less than/equal to 29.
}
else
{
//Day is Greater than 29
}