Hi Folks,
I hope you can help me with this,
I use FCKeditor quite often and usually without any problem, so i have some experience with the implementation.
For my current project i have implemented FCKeditor in more pages for the same website, in the 2nd or third page i ran into a problem, the other pages work fine.
I try to update one record in a database, i use php/mysql. When i sybmit the form with just one textarea the record just doent get updated in the database. The strange thing is when i use a plain text area ut does work, the record gets updated without problem. When i implement the FCKeditor code to replace the text area the record doesnt get updated.
<?php $oFCKeditor->Width = '100%'; $oFCKeditor = new FCKeditor("content_vrw_$cnt1"); $oFCKeditor->BasePath = 'fckeditor/'; $oFCKeditor->Value = ($row_rshpb_voorwaarden_vrw['content_vrw']); $oFCKeditor->Create() ; ?>
The FCKeditor text area appears like normal, the record just doesnt get updated.
Beats me, hoping for your solution ill try and find it myself also
kind regards,
symvar
Re: Problem with updating record
Ok ehm,
It works now
I used:
And changed something in how records are retrieved of the database.. i dont know what did the trick exactly, maybe both.
Kind regards,
symvar