Hi,
I have been banging my head against a wall trying to do the following.
Put information from Access DB (no worries). The field I want is a memo (or text) field so therefore it is freeform. It contains lots (or a couple) of linefeeds and carriage returns.
I am trying to remove all these and have this entry come in as one line only.
chop doesn't work, neither does explode or implode. the text still has a carriage return which makes my html code fail.
Any ideas ??!?!?
$MySolution = $Solution[$z];
$MySolution = explode("\n",$MySolution);
$MySolution = implode("",$MySolution);
This doesn't work -- is there something I'm missing ?