<?
@session_start();require("conn\config.php");
if($send)
{ $subject = $_POST['subject'];
$content = $_POST['myFCKeditor'];
$time = $_POST['time'];
$writer = $_POST['writer'];
$sql="insert into news(subject,content,time,writer) values('$subject','$content','$time','$writer')";
$result = mysql_query($sql);
mysql_close($conn);
if($result)
   { 
    echo("<script type='text/javascript'> alert('提交成功!已添加新信息');location.href=news_manage.php';</script>");
 
  }
 else
{
 echo "添加失败"; die("<br>添加失败: " . mysql_error());  //执行插入sql语句 
  }
 
}?>
<script language=javascript>
function CheckForm()
{

 if (document.form.subject.value=="")
 {
alert("请填写新闻题目!");
return false;
}
if (document.form.time.value=="")
 {
alert("请填写发布时间!");
return false;
}
if (document.form.writer.value=="")
 {
alert("请填写发布人!");
return false;
}
return true;
}
</Script>   
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>编辑新闻资料</title>
</head>
<body>
<form name=form action=news_add.php method=post onSubmit="return CheckForm()">
<table width="100%" border="0" cellpadding="0" cellspacing="1" class="tableborder">
<tr class="header" bgcolor="#a8c7ce"><td colspan="2">编辑新闻资料</td></tr>
<tr class="altbg2"><td width="25%">新闻题目:</td><td class="smalltxt"><input type="text" name="subject" size="40"></td></tr>
<tr class="altbg2"><td width="25%">发布时间:</td><td class="smalltxt"><input type="text" name="time"></td></tr>
<tr class="altbg2"><td width="25%">发布人:</td><td class="smalltxt"><input type="text" name="writer"></td></tr>
<tr class="altbg2"><td width="25%">内&nbsp;&nbsp;容:</td><td class="smalltxt"><INPUT name="myFCKeditor" id="myFCKeditor" style="DISPLAY: none" type=hidden>
<INPUT name="myFCKeditor___Config" id="myFCKeditor___Config" style="DISPLAY: none" type=hidden>
<IFRAME id="myFCKeditor___Frame" src="FCKeditor/editor/fckeditor.html?InstanceName=myFCKeditor&amp;Toolbar=Default" frameBorder=0 width=100% scrolling=no height=500>
</IFRAME></td></tr>

<tr class="altbg1"><td>&ensp;</td><td class="smalltxt"><input class="button" type="submit" name=send value=提交 >
<input class="button" type="reset" name=reset value=重置 ></td></tr>
<tr class="altbg1"><td>使用提示:</td><td class="smalltxt">请填写完整资料,各项不能为空!</td></tr>
</table>
</form>
</body>
</html>
以上是我的代码,为什么运行完以后,页面会一片空白,没有跳转到news_manage.php,
但数据库里的数据添加了,是不是与那个FCK控件有关?
请问高手怎么改?