Jump to content

Icaros

Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Icaros's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. OK i got it to work, but it's a strange solution! //Strip quotes $fixcomment2 = str_replace('\"', '', $comment); $comment = $fixcomment2; $fixcomment2 = str_replace("\'", "", $comment); $comment = $fixcomment2; notice that for double quotes, i need to use single quotes (' \" '), but for single quotes i needed to use double (" \' "). it didn't work any other way!
  2. i've tried using the following to remove double quotes (i'll get to single eventually) from a string that the user can enter, but it's removing the entire word in quotes. example: blah blah "blah" returns: blah blah should be: blah blah blah $fixcomment = str_replace("\x22", "", $comment); or $fixcomment = str_replace("\"", "", $comment); any ideas?
×
×
  • 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.