<?php
	$gun1 = mktime(0,0,0,01,02,2010);
	$gun2 = mktime(0,0,0,02,02,2010);
	$son = $gun2 - $gun1;
	echo floor($son / (60*60*24));
?>