You can't put HTML tags inside an input field. So those <BR> tags need to be converted to "\r\n".
You could do for example,
$Ingredients = str_replace("<BR>", "\r\n", $Ingredients);
Then the line to display it should use <textarea>
<td><textarea name="Ingredients"><?php echo $Ingredients;?></textarea></td>
|