mirror of
https://github.com/FlyInTheBox/31TSAI.git
synced 2024-11-09 20:44:11 +01:00
l
This commit is contained in:
parent
85e8e68332
commit
d135580aff
1 changed files with 17 additions and 3 deletions
|
@ -6,18 +6,32 @@
|
|||
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++) {
|
||||
echo "<td>" . $i . "</td>";
|
||||
for ($i = 1; $i <= $x; $i++) {
|
||||
$z=$i%7;
|
||||
if ($z=0){
|
||||
if ($z!=0){
|
||||
echo "<td>" . $i . "</td>";
|
||||
}
|
||||
else {
|
||||
echo "<td>" . $i . "</td>";
|
||||
echo "</tr><tr>";
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
?>
|
||||
</tr>
|
||||
|
|
Loading…
Reference in a new issue