I have a update form, where the info comes from my DB.
How come the FCKeditor doesn't display my data??? Please help.
<?php $oFCKeditor = new FCKeditor('FCKeditor1') ; $oFCKeditor->BasePath = '/admin/FCKeditor/' ; $oFCKeditor->Value = '$restaurantxtra' ; $oFCKeditor->Create() ; ?>
How come the FCKeditor doesn't display my data??? Please help.

RE: Inserting value from database?!?
RE: Inserting value from database?!?
<textarea name="golfshop_div" cols="49" rows="5" id="restaurantxtra" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 8pt; color: #000000;"><? echo $restaurantxtra; ?></textarea>RE: Inserting value from database?!?
Try:
<script language="javascript">
oFCKeditor = new FCKeditor('FCKeditor1') ;
oFCKeditor->BasePath = '/admin/FCKeditor/' ;
oFCKeditor->Value = '<? print $restaurantxtra; ?>' ;oFCKeditor->Create() ;
</script>
RE: Inserting value from database?!?