I need to create a PHP form which will allow the user to select two separate dates, which return the values stored in the table in the MySQL database between the dates selected by the user. The code below will allow the user to select one date

Code:
$query2 = mysql_query("SELECT transaction_date FROM transaction") or die(mysql_error());
$numrows = mysql_num_rows($query2);
echo "<br /><br />";
...