<?php
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '/fckeditor/' ;
$oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ;
$oFCKeditor->Create() ;
?><?php
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '/fckeditor/' ;
$oFCKeditor->Value = '<?php echo $row_pgcontent ['textbox1']; ?>' ;
$oFCKeditor->Create() ;
?>Parse error: syntax error, unexpected T_STRING in /home/xxxxx/xxxxx/xxx.xxxx.com/cms/edit-pages.php on line 157
$oFCKeditor->Value = '<?php echo $row_pgcontent ['textbox1'] ; ?>' ;

Re: Dynamic Content, Please Help.
Re: Dynamic Content, Please Help.
alfonsoml - you didnt answer any of my questions.
Can what i want to do be done and how?
What am i doing wrong.
Re: Dynamic Content, Please Help.
http://php.net/echo
Re: Dynamic Content, Please Help.
YOU DONT ANSWER MY QUESTION,
rather than just leaving smart remarks actually be helpful.
Re: Dynamic Content, Please Help.
<?php $oFCKeditor = new FCKeditor('FCKeditor1') ; $oFCKeditor->BasePath = '/fckeditor/' ; $oFCKeditor->Value = $row_pgcontent['textbox1']' ; $oFCKeditor->Create() ; ?>