Hi
m using FCKeditor for php4.X.X
when i submit form which have fckeditor , is redirect to my home page i.e. http://mydomainname.com
<code>
<form id="form1" name="form1" method="post" action="">
<?php $sBasePath = $_SERVER['PHP_SELF'] ;
$sBasePath = substr( $sBasePath, 0, strpos( $sBasePath, "main/file1.php" ) )."fckeditor/";
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = $sBasePath ;
if ( isset($GET['Lang']) )
{
$oFCKeditor->Config['AutoDetectLanguage'] = false ;
$oFCKeditor->Config['DefaultLanguage'] = $GET['Lang'] ;
}
else
{
$oFCKeditor->Config['AutoDetectLanguage'] = true ;
$oFCKeditor->Config['DefaultLanguage'] = 'en' ;
}
$oFCKeditor->Value =$detail ;
$oFCKeditor->Create() ;?>
<input type="submit" name="Submit1" value=" Save " />
</form>
</code>
on submit i just print print_r($_POST);
but it redirect to my home page
Thanx