Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/12/2005, 14:42
Avatar de Keleriano
Keleriano
 
Fecha de Ingreso: junio-2002
Ubicación: Granada
Mensajes: 133
Antigüedad: 21 años, 9 meses
Puntos: 0
Si te he entendido bien... es muy facil, solo añade <br> al final o al principio, algo así:

En lugar de esto:
Código PHP:
echo "</tr>";
echo 
'</table>';

Pon esto:
Código PHP:
echo "</tr>";
echo 
'</table>';
echo 
'<br><br>';