Ver Mensaje Individual
  #6 (permalink)  
Antiguo 02/07/2005, 00:03
Avatar de xknown
xknown
 
Fecha de Ingreso: diciembre-2004
Ubicación: Cusco - Perú
Mensajes: 2.248
Antigüedad: 19 años, 3 meses
Puntos: 7
Cita:
Iniciado por jpinedo
Código PHP:
if(isset($_POST['variable'])){
   
$variable $_POST['variable'];// Primero la busca en el post (ocurrirá la primera vez)
}else{
    
$variable $_GET['variable'];// Si no está, la busca en el GET (ocurrirá en las siguientes páginas)

Sobre esa parte del código no sería mejor hacerlo así?

Código PHP:
if(isset($_REQUEST['variable']))
   
$variable $_REQUEST['variable']; 
Aquí otro paginador:
http://www.jvmultimedia.com/home/art...p?articleId=18

Saludos
__________________
Alex Concha
Buayacorp - Programación y Diseño