Posted by Rik on 10/13/06 12:32
mantrid wrote:
> but input type (below) cuts everything off after the ' character.
> However this does not happen with other characters such as " or /
> <input type='text' class='BodyText' style='WIDTH: 85%' name='test'
> value='<?php echo $opta; ?>'>
>
> can anyone explain this behaviour and have a solution so that text
> with any ' characters in it is fully displayed?
Which is exactly as is should be. The ' in the text means it's the end of
the value. I't invalid HTML, and most browsers will handle the 'extra'
attributes (that's what it is after the ') by discarding it.
htmlspecialchars() or htmlentities() your $opta.
Grtz,
--
Rik Wasmus
Navigation:
[Reply to this message]
|