Ver Mensaje Individual
  #3 (permalink)  
Antiguo 08/05/2007, 11:19
Avatar de sumolari
sumolari
 
Fecha de Ingreso: mayo-2006
Ubicación: localhost
Mensajes: 1.367
Antigüedad: 18 años
Puntos: 18
Re: Es posible href en php

No, sería así
Código PHP:
<?php
$x
=1;
while(
$x != 5)
{
echo 
"<a href=\"Mi pagina "$x; echo ".php\">Pagina "$x; echo "</a>";
$x++;
}
?>