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 Quote Link to comment 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. Quote Link to comment 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! Quote Link to comment 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(). Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.