Código PHP:
   <?php 
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"> 
<?php 
$oFCKeditor = new FCKeditor('nombre_del_textarea') ;
$oFCKeditor->BasePath = 'fckeditor/';
$oFCKeditor->Width*= '700' ;
$oFCKeditor->Height = '500' ;
$oFCKeditor->Create() ;
?> 
<br /> 
<input type="submit" value="Submit"> 
</form> 
</body> 
</html>   esta explicacion me dice como insertar el fckeditor en un formulario, pero al momento de correrlo no me sale...
Me da estos errores en la linea 2
include() [function.include]: Failed opening.
El archivo esta ahi pero no se muestra...alguna explicacion de como instalarlo para php?
 
 

