29/02/2012, 02:08
|
| | | Fecha de Ingreso: septiembre-2010 Ubicación: München
Mensajes: 2.445
Antigüedad: 14 años, 2 meses Puntos: 331 | |
Respuesta: modificar funcion anterior siguiente
Código PHP:
Ver originalfunction getPrev($c, $pics) { if(1 == $c) return "<<"; if($c <= count($pics)) return $c - 1; elseif($c == count($pics)) return $c; } function getNext($c, $pics) { if($c < count($pics)) return $c + 1; elseif($c == count($pics)) return ">>"; }
__________________ Fere libenter homines, id quod volunt, credunt. |