-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
30 lines (30 loc) · 821 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Curso de PHP - Competição</title>
</head>
<body>
<p>Formulário para Inscrição de Competidores</p>
<form action="script.php" method="POST">
<?php
$msgError = isset($_SESSION['mensagem-de-erro']) ? $_SESSION['mensagem-de-erro'] : '';
if(!empty($msgError))
{
echo $msgError;
}
?>
<br>
<label for="nome">Nome: </label> <br>
<input type="text" name="nome" > <br><br>
<label for="idade">Idade: </label> <br>
<input type="text" name="idade" > <br><br>
<input type="submit" value="ENVIAR">
</form>
</body>
</html>