D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
markniuj
/
bazmeasar.com
/
admin
/
Filename :
monthly-bayan.php
back
Copy
<?php include "../config.php"; ?> <!DOCTYPE html> <html> <head> <title>Filter Audio Files</title> </head> <body> <form method="post" action="filter.php"> <label for="year">Select Year:</label> <select name="year" id="year"> <?php // Generate dropdown options for years from 2020 to 2030 for ($i = 2020; $i <= 2030; $i++) { echo "<option value='$i'>$i</option>"; } ?> </select> <label for="month">Select Month:</label> <select name="month" id="month"> <option value="">-- Select Month --</option> <?php // Array of month names $months = [ '01' => 'January', '02' => 'February', '03' => 'March', '04' => 'April', '05' => 'May', '06' => 'June', '07' => 'July', '08' => 'August', '09' => 'September', '10' => 'October', '11' => 'November', '12' => 'December' ]; // Generate dropdown options for months foreach ($months as $key => $value) { echo "<option value='$key'>$value</option>"; } ?> </select> <input type="submit" value="Filter"> </form> </body> </html>