php - nicEditor some items not working to display -


i'm using nicedit image upload option.
i'd tested site on localhost , works well. i've uploaded server doesn't work.
found reason that, adding \ every ". , tags i'm getting looks like:

<img src=\"http://someurl.com/image.jpg\"> 

how tackle problem?

faisal can replace \ "" (empty space). use

private string replace(string path){           return path.replaceall("\\", "");      } 

Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -