-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.php
24 lines (23 loc) · 900 Bytes
/
search.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
<?php
if (!include('dat/config.php')) {
die("<h1>No se ha encontrado config.php</h1>\n<a>Puede que aun no hayas instalado Figuritas Engine.</a>");
}
include ('incs/header.php');
?>
<div class="menu">
<a class="btnmen" href="index.php">Inicio</a>
<a class="btnmen" id="btnbusq" onclick="opbusq()">Buscador</a>
<a class="btnmen" id="cbusq" style="display: none;" onclick="clbusq()">Cerrar</a>
<a class="btnmen" href="export.php">Exportar</a>
<a class="btnmen" href="config.php">Configuración</a>
</div>
<div id="busq" style="display:none">
<h6>Busca una figurita:</h6>
</div>
<div class="contenido">
<h2>Busca una figurita:</h2>
<a>Para consultar, escribe su número y pulsa Intro</a><br>
<input type="text" id="boxnum" onkeyup="enterP(boxnum, event)"><br>
<a id="existentes"></a>
</div>
<?php include ('incs/footer.php'); ?>