miércoles, 23 de mayo de 2012

Activar / desactivar firewall windows por linea comandos

Para desactivar el cortafuegos de Windows XP o W7

netsh firewall set opmode disable

Para activar el cortafuegos de Windows XP: o W7

netsh firewall set opmode enable

miércoles, 16 de mayo de 2012

php - convertir en MAYUSCULAS o minusculas

Caso MAYÚSCULAS(UCase, strtoupper)

$str "Mary Had A Little Lamb and She LOVED It So";$str strtoupper($str);
echo 
$str// Prints MARY HAD A LITTLE LAMB AND SHE LOVED IT SO?>

Caso minúsculuas(LCase, strtolower)
 
Caso minúsculas
$str "Mary Had A Little Lamb and She LOVED It So";$str strtolower($str);
echo 
$str// Prints mary had a little lamb and she loved it so?>