mirror of
https://github.com/FlyInTheBox/31TSAI.git
synced 2024-11-09 12:34:11 +01:00
l
This commit is contained in:
parent
d135580aff
commit
6972311109
1 changed files with 27 additions and 6 deletions
|
@ -11,27 +11,48 @@
|
|||
border: 2px solid black;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
text-align: center;
|
||||
}
|
||||
.cyan:nth-child(even){
|
||||
background-color: cyan;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>
|
||||
<?PHP
|
||||
echo (strftime("%B"));
|
||||
?>
|
||||
</h1>
|
||||
<table>
|
||||
<tr>
|
||||
<?PHP
|
||||
$x = date("t");
|
||||
echo "<caption>".$x."</caption>";
|
||||
for ($i = 1; $i <= $x; $i++) {
|
||||
$z = $i % 7;
|
||||
if ($z != 0) {
|
||||
echo "<td>" . $i . "</td>";
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
echo "<td>" . $i . "</td>";
|
||||
echo "</tr><tr>";
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<hr>
|
||||
<br>
|
||||
<table>
|
||||
<tr>
|
||||
<?PHP
|
||||
$array = array("pon","wto","śro","czw","pią","sob","nie");
|
||||
foreach ($array as $i) {
|
||||
echo "<td class='cyan'>".$i."</td>";
|
||||
}
|
||||
?>
|
||||
</tr>
|
||||
|
|
Loading…
Reference in a new issue