I currently have a simple text field area where users can enter comments. That info is then stored, along with other information from a form to my database.
My question is, can the info entered into FCK be assigned to a variable/name which I can then store to my database, using ColdFusion??
Thanks,
Steve
My question is, can the info entered into FCK be assigned to a variable/name which I can then store to my database, using ColdFusion??
Thanks,
Steve
RE: Sending info entered into FCK to database ??
See, normally u use something like this, isn't it ?
$oFCKeditor = new FCKeditor('text') ;
$oFCKeditor->BasePath = '/FCKeditor/';
$oFCKeditor->Value = '';
$oFCKeditor->Width = '100%' ;
$oFCKeditor->Height = '300' ;
$oFCKeditor->Create() ;
Basically the parameter that u r passing while creating a new instance of FCKeditor can be used as the variable name (since this is the name of ur textarea). In this example, it is 'text' (without the single quote).
Hope that helps.
Cheers.