Jump to content

pasting quotes from db inside a textarea


anarchoi

Recommended Posts

i have a stupid problem:

 

i'm echo'ing an entry from my database that has quotes inside it, so it stops at the first quotes because it breaks the textarea's value="$myvar"

 

how can i paste the text with quotes, keeping them intact, inside of a textbox?

Link to comment
Share on other sites

I'm guessing you're doing this to be able to edit the entry, and then do an UPDATE query. In that case, use htmlspecialchars() and a user defined function unhtmlspecialchars(), to keep the data intact.

 

When echoing from the database, use htmlspecialchars(), and before inserting the data back in, use unhtmlspecialchars:

 

function unhtmlspecialchars($string) {

$string = str_replace('&', '&', $string);

$string = str_replace('"', '"', $string);

$string = str_replace('<', '<', $string);

$string = str_replace('>', '>', $string);

return $string;

}

 

I refuse to use the [ code ] tags, since they break the ampersands >:(

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.