ASP
Dim sValue sValue = Request.Form( "FCKeditor1" )
This is my PHP action code | the form action is set to "$_SERVER['HTTP_REFERER']"
$sValue = stripslashes( $_POST['FCKeditor1'] ) ;
$action = $_REQUEST['sent'];
$filename = "../promotions-en.txt"; //Edit this to point to ur textfile
$handle = fopen($filename, "rb");
fclose($handle);
if ($action=="sent"){
$fh = fopen($filename, 'w') or die("Can't Access the file at this moment.");
$stringData = $sValue;
fwrite($fh, $stringData);
fclose($fh);
$saved = "<p>Your file has been saved</p>";
}

Re: FCKeditor ASP Setup * Basic help needed