下面的代码放在真实机上测试没有问题,但是相同的代码放在虚拟机里面测试的时候却显示的是空白的,虚拟机装的是fedora,请高手帮忙看一下~~~
<? 
if($_POST['sub'])
{
echo $_POST['aaa'];
}
include("FCKeditor/fckeditor.php");
$oFCKeditor=new FCKeditor('aaa');
$oFCKeditor->BasePath='../FCKeditor/';
$oFCKeditor->Value='asadf';
$oFCKeditor->Create();
?>
<form name='aa' action='' method="post">
<input type="submit" name="sub" value="提交">
</form>