Input below FCK = FCK value not send :-/
My Form
form action="sampleposteddata.php" method="post" target="_blank"
input type="text" name="name"
---php
$data = "Text";
$sBasePath = $_SERVER['PHP_SELF'] ;
$sBasePath = substr( $sBasePath, 0, strpos( $sBasePath, "_samples" ) ) ;
$oFCKeditor = new FCKeditor('editor') ;
$oFCKeditor->BasePath = '' ;
$oFCKeditor->ToolbarSet = 'Default' ;
$oFCKeditor->Width = '600' ;
$oFCKeditor->Height = '200' ;
$oFCKeditor->Value = $data ;
$oFCKeditor->Create() ;
/php
input type="text" name="name2"
input type="submit" value="Submit"
/form
send DATA
foreach ( $HTTP_POST_VARS as $sForm => $value )
{
$value;
}
=$value
=$name
=$name2
Mon, 09/12/2005 - 05:27
#1