This is the code I'm using:
$test1 = '3,10,2003';
$test2 = gmmktime(0,0,0,$test1);
but - this creates a unix timestamp that is TODAY's date, not March 10th.
On the other hand, this works as expected:
$test1 = '3,10,2003';
$test2 = gmmktime(0,0,0,3,10,2003);
what am I missing here?