Displaying Rows in the 'fckeditor' Rich Text script

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Philth
    New Member
    • Oct 2007
    • 38

    Displaying Rows in the 'fckeditor' Rich Text script

    Hi there,

    I'm pulling information out of a table and displaying in a form. Some rows are displayed in standard input text boxes - no problem. However, I would like to be able to display some rows within the FCK Rich Text Editor.

    Has anybody had any experience of doing this?

    I'm hoping it's as simple as something along the lines of...

    Code:
    <?php
    $oFCKeditor = new FCKeditor('courseHeader') ;
    $oFCKeditor->BasePath = '../fckeditor/' ;
    $oFCKeditor->Value = echo $row['courseLinks'] ;
    $oFCKeditor->Create() ;
    ?>
    Many thanks.
  • Philth
    New Member
    • Oct 2007
    • 38

    #2
    Can anybody please help me with this?

    Comment

    • Markus
      Recognized Expert Expert
      • Jun 2007
      • 6092

      #3
      Originally posted by Philth
      Hi there,

      I'm pulling information out of a table and displaying in a form. Some rows are displayed in standard input text boxes - no problem. However, I would like to be able to display some rows within the FCK Rich Text Editor.

      Has anybody had any experience of doing this?

      I'm hoping it's as simple as something along the lines of...

      Code:
      <?php
      $oFCKeditor = new FCKeditor('courseHeader') ;
      $oFCKeditor->BasePath = '../fckeditor/' ;
      $oFCKeditor->Value = echo $row['courseLinks'] ;
      $oFCKeditor->Create() ;
      ?>
      Many thanks.
      Take the echo out of line #4. Other than that, you'll be better off asking on an FCKEditor forum.

      Comment

      Working...