//fck form...
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '/MassMailer/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() ;
//mysql statement
$content = stripslashes( $_POST['FCKeditor1'] ) ;
$sql = "INSERT INTO mail (msg) VALUES ($content)";
mysql_query($sql) or die(mysql_error());
Wed, 07/23/2008 - 23:34
#1

Re: FCK editor and mysql