Ver Mensaje Individual
  #4 (permalink)  
Antiguo 27/07/2010, 12:54
Avatar de Adler
Adler
Colaborador
 
Fecha de Ingreso: diciembre-2006
Mensajes: 4.671
Antigüedad: 17 años, 4 meses
Puntos: 126
Respuesta: Variables variable

Hola

<offtopic>El manual de ZEND PHP 5 dice
Cita:
Variable variables are a very powerful tool, and should be used with extreme care, not
only because they can make your code difficult to understand and document, but also
because their improper use can lead to some significant security issues.
A technique similar to variable variables can also be used to hold function names inside a variable:

function myFunc() {
echo ’myFunc!’;
}
$f = ’myFunc’;
$f(); // will call myFunc();
</offtopic>

Suerte
__________________
Los formularios se envían/validan con un botón Submit
<input type="submit" value="Enviar" style="background-color:#0B5795; font:bold 10px verdana; color:#FFF;" />