31TSAI/Zadanie 21.12.2022/index.php
FlyInTheBox d135580aff l
2022-12-21 12:32:26 +01:00

40 lines
No EOL
852 B
PHP

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Kalendarz</title>
<style>
td {
border: 2px solid black;
padding: 20px;
}
table {
border-collapse: collapse;
}
</style>
</head>
<body>
<table>
<tr>
<?PHP
$x = date("t");
for ($i = 1; $i <= $x; $i++) {
$z=$i%7;
if ($z!=0){
echo "<td>" . $i . "</td>";
}
else {
echo "<td>" . $i . "</td>";
echo "</tr><tr>";
}
}
?>
</tr>
</table>
</body>
</html>