Tengo un editor de html que utilizo en mis paginas web (CKeditor) pero el detalle es que al momento de actualizar un registro me aparece un Text Area (IMAGEN1)

Y DE ESTA MANERA INSERTO EL EDITOR DENTRO DE MI CODIGO
Código:
  
Gracias o algun editor de html que me recomienden . saludos y muchas gracias  <tr valign="baseline">
          <td nowrap="nowrap" align="right" valign="top">Contenido:</td>
          <td><textarea name="txtContenido" cols="50" rows="5">
		  	<?php echo htmlentities($row_DatosVision['txtContenido'], ENT_COMPAT, 'UTF-8'); ?>
             <?php include("ckeditor/ckeditor.php"); 
			  	$valor = "";
				$editor = new CKEDITOR();
				$editor->basePath = "./ckeditor/";
				$editor->editor ("txtContenido",$valor);
			  	?>
            </textarea>
          </td>
        </tr>
 

