ok this is stupid I know:
why cant I display my apostrophied text in my edit field?
text is this "I'm on a plane"
its inserted to the db with mysql_real_escape_string and echoes on to the page as raw text fine
but when echoing into a text input area it messes up the html and gives up after the apostrophe - which I understand - its an html problem not a php or mysql problem
<input type='Text' name='blg_txt' size='60' value=' <?php echo $blg_txt ;?>' >
but what on earth is the solution?
- ok well a textarea displays it ok - is that the only solution?