Backend/20241024/html.php

18 lines
468 B
PHP
Raw Normal View History

2024-10-24 09:26:03 +00:00
<?php
include("head.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Képek kezelése</title>
</head>
<body>
<form action="" method="POST" enctype="multipart/form-data">
Név: <input type="text" name="kepnev"> <br>
<input type="file" name="kepfajl"> <br>
<button type="submit">Feltölt</button>
</form>
</body>
</html>