treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Missing carriage return chars.

  • Hi,

    I'm looking for a bit of help.

    I have a record in a MSSQL. I'm using PHP to pull that record.

    In the record there are the funky square characters for chr(13) and chr(10).

    In PHP they are totally ignored which means that the record appears on one line.

    I have tried replacing these with various a numerous characters but no joy.

    Things like
    Code: [Select]
    str_replace(' ', '
    ', $notes);
    and
    Code: [Select]
    str_replace(chr(10), " ", $notes);

    Please help