<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
?>
<?php
// Ваш PHP код здесь
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
// Обработка данных формы
$username = $_POST['username'];
$password = $_POST['password'];
// Пример проверки данных
if (empty($username) || empty($password)) {
echo "Все поля должны быть заполнены!";
} else {
echo "Регистрация успешна!";
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Register</title>
</head>
<body>
<form action="" method="post">
<label for="username">Username:</label>
<input type="text" id="username" name="username"><br>
<label for="password">Password:</label>
<input type="password" id="password" name="password"><br>
<input type="submit" value="Register">
</form>
</body>
</html>