I am trying to create a update page with one field using FCK. The problem is I cannot get the information from the database to display in FCK
the code I have is:
$oFCKeditor->CreateFCKeditor( 'EditorBasic', 350, 170 ) ;
?>
The problem is that I have <?php embedded in another <?php
I have seem an earlier post but do not undersand what they mean.
the code I have is:
<?php
$oFCKeditor = new FCKeditor ;
$oFCKeditor->ToolbarSet = 'Basic' ;
$oFCKeditor->Value = '<?php echo $row_RS_editListing['description']; ?>' ;
$oFCKeditor->CreateFCKeditor( 'EditorBasic', 350, 170 ) ;
?>
The problem is that I have <?php embedded in another <?php
I have seem an earlier post but do not undersand what they mean.
RE: display data from database in FCK
the code I have is: