I am working on a database that has records that have been entered with blank lines in between some of the data. When I try to concatinate the field to display to a screen, when there is a blank line in the record it prints the previous line.
while ($row = mysql_fetch_array($result)){
$Description=$row['Descrip'];
$Summary .= $row['Summary'];
}
Summary is the line I am having problems with. Does any one have some suggestions on how I might get around this problem. thanks.
Ruth