Ver Mensaje Individual
  #5 (permalink)  
Antiguo 16/01/2008, 10:47
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: ejecutar funciones

Entonces agrega un parametro:
Código HTML:
<a href="pagina.php?ejecutafunc">prueba</a> 
y en PHP:
Código PHP:
if( isset( $_GET['ejecutafunc'] ) ) {
           
funcion();

Saludos.