-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.php
executable file
·45 lines (31 loc) · 1.53 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="pt-br" dir="ltr">
<head>
<meta charset="UTF-8">
<title>PHP REPORT</title>
</head>
<body>
<h1> OLÁ :)</h1>
<h3> Preencha a descrição que irá colocar no relatório usando POST: </h3>
<form action="exemplorelatorio.php" method="post">
Título: <input type="text" value="" name="titulo"><br><br>
Page Header: <input type="text" value="" name="pageheader"><br><br>
Descrição: <input type="text" value="" name="descricao"><br><br>
Footer: <input type="text" value="" name="footer"><br><br>
Page Footer: <input type="text" value="" name="pagefooter"><br><br>
Summary: <input type="text" value="" name="summary"><br><br>
<input type="submit" value="ENVIAR POR POST">
</form>
<hr>
<h3> Preencha a descrição que irá colocar no relatório usando GET: </h3>
<form action="exemplorelatorio.php" method="get">
Título: <input type="text" value="" name="titulo"><br><br>
Page Header: <input type="text" value="" name="pageheader"><br><br>
Descrição: <input type="text" value="" name="descricao"><br><br>
Footer: <input type="text" value="" name="footer"><br><br>
Page Footer: <input type="text" value="" name="pagefooter"><br><br>
Summary: <input type="text" value="" name="summary"><br><br>
<input type="submit" value="ENVIAR POR GET">
</form>
</body>
</html>