Hi Guys,
I need to use the FCKeditor to edit a news item when selected but i cant return the value from the database so that the user can edit it??
Please, please if anyone knows could you help out a newbie?
cheers
Thu, 03/26/2009 - 10:01
#1
Re: Anyone know how to return a value from a database into fcked
Hi
Karsten
Put the value from the database in to a variable do like this:
<%
StrText=Value from Database
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "/fckeditor/"
oFCKeditor.Value = StrText
oFCKeditor.Create "FCKeditor1"
%>
It works fore me
Re: Anyone know how to return a value from a database into fcked
I managed to sort this now thanks anyway.