Seu código deve ser este:
$result = "select * from table
where unix_timestamp(Date) >= unix_timestamp(".$_POST[DateFrom1].")
&& unix_timestamp(Date) <= unix_timestamp(".$_POST[DateTo1].")";
Para converter data em timestamp no mysql existe a função
unix_timestamp
.