-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.php
More file actions
executable file
·43 lines (41 loc) · 1.4 KB
/
home.php
File metadata and controls
executable file
·43 lines (41 loc) · 1.4 KB
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
<?php require 'header.html'; ?>
<script >
document.title='Diccionario de Lenguas Mayas "UtzApp"';
</script>
<div class="container">
<div style="margin: 0 auto;max-width: 330px;padding: 15px; text-align: center; ">
<legend>Diccionario de Lenguas Mayas <h2>"UtzApp"</h2></legend>
<?php if(isset($flash['errors'])): ?>
<p class="text-error"><?php echo $flash['errors']?></p>
<?php endif; ?>
<!--div class="form-group">
<label for="pespa">Buscar</label>
<input type="search" class="form-control" id="palabra" name="palabra" placeholder="Ingrese Palabra en Español" >
</div><button onclick="busqueda()" class="btn btn-primary">Buscar</button>
<div class="form-group" style="height: 20px">
<?php if(isset($flash['menssage'])): ?>
<p class="text-succes"><?php echo $flash['message'] ?></p>
<?php endif; ?>
</div-->
</div>
<h1>Diccionario: </h1>
<table class="table table-striped table-hover ">
<thead>
<tr class="active">
<th>ESPAÑOL</th>
<th>PALABRA</th>
<th>LENGUA</th>
</tr>
</thead>
<tbody>
<?php foreach ($diccionario as $key => $value):?>
<tr>
<td><?php echo $value['espanol']; ?></td>
<td><?php echo $value['palabra']; ?></td>
<td><?php echo $value['lengua']; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</div>
</body>
</html>