View Single Post
  #1 (permalink)  
Old 06-21-09, 02:11 AM
devphp12 devphp12 is offline
Newbie Coder
 
Join Date: Oct 2008
Posts: 25
Thanks: 0
Thanked 0 Times in 0 Posts
FCKeditor problem with php4

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

PHP Code:
<form id="form1" name="form1" method="post" action="">
<?php $sBasePath $_SERVER['PHP_SELF'] ;
$sBasePath substr$sBasePath0strpos$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>
on submit i just print print_r($_POST);
but it redirect to my home page

Thanx

Last edited by Nico; 06-22-09 at 05:55 AM.
Reply With Quote