<?
include("FCKeditor/fckeditor.php") ;
?>
<html>
    <head>
        <title>FCKeditor - Sample</title>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    </head>
    <body>
        <form action="savedata.php" method="post">
        <table style="width:800px;height:700px;">
        <tr>
            <td>
                <div style="overflow:auto;height:100%;width:inherit">
                    <div style="width:inherit;height:100px;">
                        <div style="height:500px;">&nbsp;</div>
                            <?
                            $oFCKeditor = new FCKeditor('FCKeditor1') ;
                            $oFCKeditor->BasePath = '/FCKeditor/';
                            $oFCKeditor->Value = 'Default text in editor';
                            $oFCKeditor->Create() ;
                            ?>
                        <div style="height:300px;">&nbsp;</div>
                    </div>
                </div>
            </td>
        </tr>
        </table>
        <input type="submit" value="Submit">
        </form>
    </body>
</html>
