Ver Mensaje Individual
  #8 (permalink)  
Antiguo 11/11/2013, 16:25
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
Respuesta: Inserción de función dentro de otra

Pues sencillo:
Código PHP:
Ver original
  1. <?php
  2. if (something()) {
  3.       if (otherthing() {
  4. ?>
  5. <!-- html -->
  6. <?php
  7.       }
  8. }
  9. ?>