Hi
Here is the code:
Please choose month:
<select name="month">
<option value="01">January</option>
<option value="02">February</option>
</select>
Please choose year:
<select name="year">
<option value="2008">2008</option>
<option value="2009">2009</option>
</select>
<input type="button" value="Submit Date" name="submitdate" />
Month / Year : <?php echo month; ?> / <?php echo year; ?>
How can the month and year to be displayed after pressing the submitdate button in the same php page?