-
Notifications
You must be signed in to change notification settings - Fork 0
/
autores.php
49 lines (39 loc) · 1000 Bytes
/
autores.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
<?php
/**
* @author iberlot
* @version 20151223
* @package Mytthos
* @category General
*
* Encargado de mostrar el listado de autores
*
*/
require_once ("Config/includes.php");
echo "<h3>Autores</h3>\n";
$directorio = "Biblioteca";
$archivo = scandir ($directorio);
$equery = "SELECT * FROM Autor ORDER BY Apellido";
$result = mysqli_query ($link, $equery) or die ('Query error: ' . mysqli_error ($link));
while ($row = mysqli_fetch_array ($result, MYSQLI_ASSOC))
{
if ($row ['segNombre'] != "")
{
$nombre = trim ($row ['nombre']) . "_" . trim ($row ['segNombre']);
$nombreTitulo = trim ($row ['nombre']) . " " . trim ($row ['segNombre']);
}
else
{
$nombre = trim ($row ['nombre']);
$nombreTitulo = trim ($row ['nombre']);
}
$nombre = str_replace (' ', '_', $nombre);
echo "<li><a href='sagas.php?autorId=" . $row ['idAutor'] . "'>" . $row ['apellido'] . ", " . $nombreTitulo . "</a></li><Br/>";
}
mysqli_close ($link);
?>
<Br />
<Br />
<Br />
<Br />
<Br />
<Br />