Hi Guys,
I am using the FCKeditor to add a news system to my site.
I used to used just a input text field so that the user can add descriptions but i want them to use the FCKeditor.
So adding news is fine but when i have added news and then given the user the option to edit the news item i am struggerling to return the value from the DB into the FCKeditor.
This is the code i used to use in the value of the text box...
But this doesnt work??
anyideas please?/
I am using the FCKeditor to add a news system to my site.
I used to used just a input text field so that the user can add descriptions but i want them to use the FCKeditor.
So adding news is fine but when i have added news and then given the user the option to edit the news item i am struggerling to return the value from the DB into the FCKeditor.
This is the code i used to use in the value of the text box...
value="<?php echo $row_News['desc']; ?>"
But this doesnt work??
anyideas please?/

Re: How to return a value from a database using PHP into FCKedit
Re: How to return a value from a database using PHP into FCKedit
Re: How to return a value from a database using PHP into FCKedit
Re: How to return a value from a database using PHP into FCKedit
Re: How to return a value from a database using PHP into FCKedit
Re: How to return a value from a database using PHP into FCKedit
Re: How to return a value from a database using PHP into FCKedit
Re: How to return a value from a database using PHP into FCKedit
Re: How to return a value from a database using PHP into FCKedit
Re: How to return a value from a database using PHP into FCKedit
Re: How to return a value from a database using PHP into FCKedit
http://www.msbware.com/p/view_article/article_id/110
$query = mysql_query("SELECT data FROM fck_data WHERE id = 1"); $data = mysql_fetch_array($query);Hi Guys,I am using the
Hi Guys,I am using the FCKeditor to add a news system to my site.I used to used just a input text field so that the user can add descriptions but i want them to use the FCKeditor.So adding news is fine but when i have added news and then given the user the...Click Here