Word and Mysql formatting

3

Colleagues, how would you make a Word proposal registered within MySQL, and could it be edited? I tried to use the wysiwyg editors to place and paste, however the Word HTML, after saving, MySQL does not recognize.

Solved. I had put the code as follows:

addslashes(htmlentities($proposta)); 

I just left:

addslashes() 

Since the editor wysiwyg already creates the HTML. I'm using tinymce.

    
asked by anonymous 14.05.2015 / 17:56

1 answer

2

Solved. I had put the code as follows:

addslashes (htmlentities ($ proposed)); I just left:

addslashes () since the wysiwyg editor already creates the HTML. I'm using tinymce.

    
08.06.2015 / 16:50