clem_c_rock Posted March 14, 2006 Share Posted March 14, 2006 Hello,This is rather embarassing given my 4 years of php coding experience but I've noticed when I'm pulling quoted text from a database into a input text field, the entire text w/in the quotes, and the quotes themselves disappears.For instance, if I try to echo this string: this is "text", only the string: this is will show up in the text input box.I know there has to something stupid I'm missingThanks,Clem C Link to comment https://forums.phpfreaks.com/topic/4901-quoted-text-disapearing-in-text-input-boxes/ Share on other sites More sharing options...
k.soule Posted March 14, 2006 Share Posted March 14, 2006 Try addslashes() when echoing the string, just a thought.Edit: Forgive me, addslashes() should be applied [i]before[/i] putting the information in the database. In your query, try using ' ' instead of " ", it sounds like a problem of exiting the string prematurely. Link to comment https://forums.phpfreaks.com/topic/4901-quoted-text-disapearing-in-text-input-boxes/#findComment-17253 Share on other sites More sharing options...
clem_c_rock Posted March 14, 2006 Author Share Posted March 14, 2006 I found it - the combonation of <?=stripslashes( htmlentities( $var ) ) ?> worked beautifully.Why haven't I ever used htmlentities()?Thanks again allMuch obliged! Link to comment https://forums.phpfreaks.com/topic/4901-quoted-text-disapearing-in-text-input-boxes/#findComment-17261 Share on other sites More sharing options...
k.soule Posted March 14, 2006 Share Posted March 14, 2006 You may want to fiddle with the quote_style argument on htmlentities(), you may be able to avoid passing it through stripslashes(). Link to comment https://forums.phpfreaks.com/topic/4901-quoted-text-disapearing-in-text-input-boxes/#findComment-17340 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.