Ver Mensaje Individual
  #3 (permalink)  
Antiguo 08/05/2008, 05:17
miSko
 
Fecha de Ingreso: septiembre-2005
Mensajes: 840
Antigüedad: 18 años, 8 meses
Puntos: 84
Re: Tabular el Codigo

Buenas.

Pues no se, supongo que no sera lo que busco porque no me sirve.

Yo quiero un Programilla que si le meto por ejemplo esto :

Código PHP:
<html>
<
head>
<
title>Prueba1</title>
</
head>
<
body>
hola mundo!!
</
body>
</
html
me devuelva algo de este tipo :


Código PHP:
<html>
     <
head>
          <
title>Prueba1</title>
     </
head>
     <
body>
          
hola mundo!!
     </
body>
</
html
y que tambien lo haga con funciones, no solo con etiquetas por ejemplo

Código PHP:
function hola() {

$mensaje "hola" ;
$numero ;
while (
$numero 10)
{
echo 
$mensaje ;
$numero++ ;
}

que lo convierta a esto :

Código PHP:
function hola() {

     
$mensaje "hola" ;
     
$numero ;
     while (
$numero 10)
     {
          echo 
$mensaje ;
          
$numero++ ;
     }


Me estoy programando algo en JavaScript que hace Esto, pero aun tengo algunos fallos xD