Files
nsi/Activity_PHP/calendar/index.php
T
2023-11-30 22:18:06 +01:00

67 lines
2.6 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calendar</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Calendar</h1>
<form method="post" action="calendar.php">
<label for="">Month :</label>
<select name="month">
<?php
$months = [
1 => "January",
2 => "February",
3 => "March",
4 => "April",
5 => "May",
6 => "June",
7 => "July",
8 => "August",
9 => "September",
10 => "October",
11 => "November",
12 => "December"
];
foreach ($months as $value => $label) {
$selected = ($value == date("n")) ? 'selected' : '';
echo "<option value='$value' $selected>$label</option>";
}
?>
</select>
<label for="">Year :</label>
<select name="year">
<?php
for ($i = date("Y")-100; $i <= date("Y")+100; $i++) {
$selected = ($i == date("Y")) ? 'selected' : '';
echo "<option value='$i' $selected>$i</option>";
}
?>
</select>
<button type="submit">Validate</button>
</form>
</header>
<main>
<section>
<h2>Welcome to the calendar generator</h2>
<p>This site allows you to generate calendars for different months according to the year you specify. Enter the month and year in the form above and click on "Validate" to see the corresponding calendar.</p>
</section>
<section>
<h2>How to use :</h2>
<p>Enter the month and year in the drop-down menus above.</p>
<p>Select the month using the first drop-down menu. You can select any month of the year by choosing from the available options.</p>
<p>Then select the year from the second drop-down menu. Available years start with 100 years ago and go up to 100 years from now.</p>
<p>Once you've chosen a month and year, click on the "Validate" button to generate the corresponding calendar.</p>
<p>The calendar generated will display the days of the week as well as the dates for the selected month and year.</p>
</section>
</main>
</body>
</html>