while ($row = mysql_fetch_assoc($result)) {
echo $row['software_name'];
echo "<br>";
echo "\r";
echo $row['software_version'];
echo "\n";
}
I've got an autosuggest feature, and the: echo "<br>"; inserts a new line in the autosuggest part, but it then inserts <br> into the textbox once submitted. how do i take care of this?