Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/02/2008, 18:03
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Re: Llamadas a funciones con parámetros

Tendrías que mandar a llamar a un archivo php y en ese archivo php incluir la función y mandarla llamar, algo así:
Código PHP:
<a href="listarinformacion.php?id=<?php echo $fila['id']; ?>">Listar</a>
Luego:
Código PHP:
$id = (int)$_GET['id'];
include( 
"/funciones.php" );
listarInformacionPublicacion$id ); 
Saludos.