Hey all,
I''m working on something that I thought would be very simple (isnt that always the way it goes?).
What I already have working is a content submission system. Someone logs in, writes some content, and boom, the page is generated.
The problem is editing the same page via a web form. My PHP script reads the whole file in, and I want to edit the raw HTML via the web form.
Everything works, except quotation makrs. PHP is taking <a href="http://www.phpbuilder.org"> and reformatting it to <a href=\"http://www.phpbuilder.org\">.
I have tried this:
eregi_replace("\\", "\"", $var)
but it isn't working. I've searched the Web and can't find a thing about this. Anyone have any suggestions?
THANKS!!