I am using tinymce editor
as rich text editor for blog management system
and codeigniter
for saving data in the database.
I am trying to save the following text in the database. I am unable to save the content. I tried to debug the issue and figured out that the issue is with the word "from". If I remove "from" I am able to save it in the database.
Here is the text:
Negotiating a mortgage is more complicated than negotiating just a rate. Unfortunately, clients too often lose thousands of dollars because they were poorly advised. Here are 7 questions
that your banker should be able to answer:
What is the penalty if I want to break my mortgage and how is it calculated?
Is my mortgage transferable to another property? If yes, under what conditions?
Can I convert my mortgage to a fixed rate?
Is my mortgage subsidiary (blanket) or traditional?
What are my pre-payment options?
What factors influence the fluctuation of fixed rates?
What factors influence the fluctuation of variable rates?
If your banker is unable to answer all the questions above, or if you don’t understand all the implications of the answers, then maybe it’s time to consult a mortgage broker. Mortgage brokers represent several lenders and can explain the terms and conditions of the different lenders and their impact. Brokers are paid by the lenders, and the remuneration is similar from one lender to another so, unlike bankers who offer just their employer’s products, brokers have a vested interest in explaining the particulars of the various products. Sign up for our newsletter "Plani-Info"
in order to not miss out on anything in our blog! Feel free to share this article with your friends, colleagues and family who might need it.
The content of this website is protected by copyright which is the exclusive property of Mortgage Planners – Mortgage Agency.
I am not getting the above content in codeigniter method.
I tried debugging the post parameters
print_r($this->input->post('content'));
The result of above is empty string. Where "content" is the name of tinymce textarea input field.
Any idea why? Thanks for you help