Ver Mensaje Individual
  #3 (permalink)  
Antiguo 21/05/2010, 12:12
adiction
 
Fecha de Ingreso: septiembre-2008
Mensajes: 48
Antigüedad: 15 años, 7 meses
Puntos: 1
Respuesta: quitar espacios o saltos de linea de nl2br

Cita:
Iniciado por abimaelrc Ver Mensaje
Debes borrar los "line feed" es decir (\r\n). Tendrías que hacer algo así
Código PHP:
Ver original
  1. <?php
  2. $string = '21/05/2010 : buenos dias<br>
  3. <br>
  4. me llamo juan';
  5. $string = str_replace(PHP_EOL, '', $string);

gracias me funciono bien..