why does:
$colum = date("n j",strtotime("second monday", mktime(0,0,0,10,0,$year)));
//gives second monday
differ from:
$colum = date("n j",strtotime("second monday", mktime(0,0,0,10,1,$year)));
//gives third monday
Why would setting the day to ZERO render the correct date (columbus day is the second monday in october)... ive always coded using a "1"... should i go back and check over things?
::scratches head::