im trying to put a few sentences and paragraphs into a MySql database field but my problem is the sentences need to have a space between them or like a return between them.
how do i make mysql accept returns. i am willing to import from excell, access, or notepad.
right now i have each sentence put into seperate fields in a row. i can pull them this way put the way im posting below leaves large spaces on output due to the extra fields that may be empty.
<table>
while ($questions = mysql_fetch_row($result)){
echo"<tr bordercolor='#000000' bgcolor='#00000' height='100'>";
echo"<td></td>";
echo"</tr>";
echo"<tr bordercolor='#000000' bgcolor='#EOEOEO' height='40'>";
echo"<td><h3>$questions[1]</h3></td>";
echo"</tr>";
echo"<tr bordercolor='#000000' bgcolor='#000000' >";
echo"<td><span class='subMenu'><br>$questions[2]<br><br>$questions[3]<br><br>$questions[4]<br><br>$questions[5]<br><br>$questions[6]<br><br>$questions[7]<br><br>$questions[8]<br><br>$questions[9]<br><br>$questions[10]<br><br>$questions[11]<br><br>$questions[12]<br><br>$questions[13]<br><br>$questions[14]<br><br>$questions[15]<br><br>$questions[16]<br><br>$questions[17]<br><br>$questions[18]<br><br>$questions[19]<br><br>$questions[20]<br><br>$questions[21]<br><br>$questions[22]<br><br>$questions[23]<br><br></span></td>";
echo"</tr>";
}
echo"</table>";
im sure this is totally wrong can someone suggest a sollution?