<textarea class="wideInput" cols="30" rows="10" value="<?php echo $row['foodDescription']; ?>" ></textarea>
should be changed to:
<textarea class="wideInput" cols="30" rows="10"><?php echo $row['foodDescription']; ?></textarea>
because textarea doesn't have value attribute