-
Notifications
You must be signed in to change notification settings - Fork 0
/
dbAccessView.php
91 lines (75 loc) · 1.59 KB
/
dbAccessView.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php require_once __DIR__ . '/../controller/DBAccessController.php'; ?>
<!DOCTYPE html>
<html lang="pt_BR" dir="ltr">
<head>
<meta charset="utf-8">
<title>Aprendendo PHP | Databases</title>
</head>
<body>
<header>
<h1>Conexões com Banco de Dados</h1>
</header>
<main>
<div>
<article>
<header>
<div>
<h2>Teste Conexão</h2>
</div>
</header>
<section>
<div>
<header>
<div>
<h3>Testando MySQLi</h3>
</div>
</header>
<pre>
<?= Controller\testMySQLi() ?>
</pre>
</div>
</section>
<hr>
<section>
<div>
<header>
<div>
<h3>Testando PDO</h3>
</div>
</header>
<pre>
<?= Controller\testPDO() ?>
</pre>
</div>
</section>
<hr>
<section>
<div>
<header>
<div>
<h3>Testando MySQLi #2</h3>
</div>
</header>
<pre>
<?= Controller\testMySQLi2() ?>
</pre>
</div>
</section>
<hr>
<section>
<div>
<header>
<div>
<h3>Testando PDO #2</h3>
</div>
</header>
<pre>
<?= Controller\testPDO2() ?>
</pre>
</div>
</section>
</article>
</div>
</main>
</body>
</html>