iframe is not being displayed...please help!
<form action="posted_data.php" method="post" target="_blank">
<input type="hidden" id="FCKeditor1" name="FCKeditor1" value="<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>" style="display:none" /><input type="hidden" id="FCKeditor1___Config" value="" style="display:none" /><iframe id="FCKeditor1___Frame" src="fckeditor/editor/fckeditor.html?InstanceName=FCKeditor1&Toolbar=Default" width="800" height="200" frameborder="1" scrolling="no"></iframe> <br>
<input type="submit" name="submit" value="Submit">
<?php
include_once("fckeditor/fckeditor.php");
?>
<!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>Simple Wysiwyg-Cms</title>
<style type="text/css" media="screen">
h1 {
font-family: Georgia, "Times New Roman", Times, serif;
color: #444;
}
</style>
</head>
<h1>Simple CMS Content Editor</h1>
<a href="fckeditor/_samples/php/sample01.php">sample 1 test</a>
<form action="posted_data.php" method="post" target="_blank">
<?php
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = 'fckeditor/' ;
$oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ;
$oFCKeditor->Create() ;
?>
<br>
<input type="submit" name="submit" value="Submit">
</form>
<body>
</body>
</html>