Ver Mensaje Individual
  #7 (permalink)  
Antiguo 15/03/2007, 12:29
IngProd
 
Fecha de Ingreso: marzo-2007
Mensajes: 78
Antigüedad: 17 años, 2 meses
Puntos: 0
Re: Mostrar los registro talcual como se ingresaron

Hola,
Igual no es la forma más eficiente, no sé si habrá alguna función PHP que lo haga, pero podrías probar así:

Código PHP:
<?php
   $aux 
str_replace ("\n""<br>"$row_Recordset1['Texto']);
   
$aux str_replace ("\t""&nbsp;&nbsp;&nbsp;"$aux);
   
$aux str_replace (" ""&nbsp;"$aux);
   echo 
$aux;
?>