Jump to content

lagarto

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

lagarto's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Now is working, but i had to use to regex, why???? i don't know but is working. $phrase = str_replace('\'', '', $phrase); $phrase = str_replace('\\', '', $phrase); Thanks Jay6390 anyway i change to str_replace instead of preg_replace.
  2. I have this code: ---------- function preg_replacement_quote($str) { return preg_replace('/\'/', '', $str); } $phrase = preg_replace($search, $replace, preg_replacement_quote($phrase), -1 , $count); echo $phrase; ------------ This code work fine in my server localhost php 5.2.5, but in my godaddy hosting i have a problem, the php version in godaddy is the same 5.2.5 but when i print the variable $phrase, the code change the ' by a \ and i just need to remove the ' from any string. Any suggestion? Thxs
×
×
  • 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.