Ver Mensaje Individual
  #4 (permalink)  
Antiguo 20/08/2004, 07:48
Avatar de yoseman
yoseman
 
Fecha de Ingreso: diciembre-2003
Ubicación: Alicante (Spain)
Mensajes: 471
Antigüedad: 20 años, 4 meses
Puntos: 5
Entonces le haces un round y listo:

Código PHP:
$limite "65535"//limite en Bytes
$limite_kbytes round($limite 1024);
echo 
"limitado a $limite Bytes"//En Bytes
echo "limitado a $limite_kbytes Kbytes"//En Kbytes 
Salu2 ;)