Note that the array index in the preceding example should be quoted, otherwise it is treated as a constant, and will throw a notice-level warning if that constant is not yet defined.
Also, if there is any possibility that the contents of that variable could have special characters or quotes that might mess up your HTML, you should escape it:
<input type="text" name="health5" value="<?php echo htmlentities($row['health5'], ENT_QUOTES); ?>">