36 lines
1.2 KiB
PHP
36 lines
1.2 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="pl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Najważniejsze Daty Polski</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div class="menu-lewy">
|
|
<h1>Najważniejsze daty w historii Polski</h1>
|
|
</div>
|
|
<div class="menu-prawy">
|
|
<a href="index.php"><img src="herb.png" alt="HERB"></a>
|
|
</div>
|
|
<div class="content">
|
|
<h3>
|
|
<?php
|
|
session_start();
|
|
echo'Pytanie nr. ', $_SESSION['zadanie']++.' z 5';
|
|
?>
|
|
</h3>
|
|
<div class="form-container">
|
|
<form action="page5.php">
|
|
<h3>UCHWALENIE KONSTYTUCJI 3 MAJA</h3>
|
|
<input type="radio" name="pytanie1" id=""><span>1788</span><br>
|
|
<input type="radio" name="pytanie1" id=""><span>1791</span><br>
|
|
<input type="radio" name="pytanie1" id=""><span>1794</span><br>
|
|
<input type="radio" name="pytanie1" id=""><span>1793</span><br>
|
|
<br>
|
|
<input type="submit" value="NASTĘPNE PYTANIE" class="next">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|