Paginacion
Publicado por Orion (45 intervenciones) el 20/11/2017 19:42:13
Buenos días,
Tengo el siguiente código:
A esta funcion se llama desde otro fichero php que contiene el codigo html. Mi pregunta es, ¿Donde tengo que añadir el código para poder realizar una paginacion? Esa funcion devuelve las imagenes que hay en la base de datos (tabla imagespost).
Muchas gracias,
Un saludo.
Tengo el siguiente código:
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
function mypicturespage(){
// conexion de base de datos
$conexion = Conexion::singleton_conexion();
$SQL = 'SELECT * FROM '.SSPREFIX.'imagespost WHERE usuario = :usuario ORDER BY id DESC';
$stn = $conexion -> prepare($SQL);
$stn -> bindParam(':usuario', $_SESSION['ssid'] ,PDO::PARAM_INT);
$stn -> execute();
$rstl = $stn -> fetchAll();
if (!empty($rstl)){
foreach ($rstl as $key){
if ($key['type'] == 1){
echo '
<a class="showthepictureitem" data-toggle="modal" data-id="'.$key['id'].'" data-target="#myModal">
<img width="128" src="'.str_replace('normal', 'small', $key['ruta']).'" >
</a>
';
}else{
echo '
<a class="showthepictureitem" data-toggle="modal" data-id="'.$key['id'].'" data-target="#myModal">
<img width="400" src="'.str_replace('normal', 'small', $key['ruta']).'" >
</a>
';
}
}
}
}
A esta funcion se llama desde otro fichero php que contiene el codigo html. Mi pregunta es, ¿Donde tengo que añadir el código para poder realizar una paginacion? Esa funcion devuelve las imagenes que hay en la base de datos (tabla imagespost).
Muchas gracias,
Un saludo.
Valora esta pregunta
0