24 lines
459 B
PHP
24 lines
459 B
PHP
|
<?php require_once 'negy.php'; ?>
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Alap web valami</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<h1>
|
||
|
POST használata
|
||
|
</h1>
|
||
|
<?php
|
||
|
if ($islogin == false){
|
||
|
require 'loginform.php';
|
||
|
|
||
|
} else {
|
||
|
require 'logged.php';
|
||
|
}
|
||
|
?>
|
||
|
<?php require_once 'footer.php'; ?>
|
||
|
</body>
|
||
|
</html>
|