Ver Mensaje Individual
  #11 (permalink)  
Antiguo 17/10/2007, 12:16
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: Ingresar Todo Con Mayusculas

Puedes hacerlo asi (si estas sobre PHP5):
Código PHP:
foreach( $_POST as &$var ) {
      
$var strtoupper$var );
}
unset( 
$var ); 
Saludos.