tengo instalado el fckeditor y funciona bien, excepto cuando inserto datos a la bse de datos con INSERT.
A modo general tengo el siguiente codigo del fckeditor, y el campo 'body' es donde guardo los datos:
Código PHP:
<b>Cuerpo del Mensaje:</b>
<script type="text/javascript" src="fckeditor/fckeditor.js"></script>
<script type="text/javascript">
<!--
var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('/')) ;
var oFCKeditor = new FCKeditor( 'body' ) ;
oFCKeditor.BasePath = sBasePath + "/fckeditor/" ;
oFCKeditor.Height = 500 ;
oFCKeditor.Value='' ;
oFCKeditor.Create() ;
//-->
</script>
<div align="center" style="padding-top:1ex;"><input type="submit" value="Agregar Mensaje"></div>
Código PHP:
$query = "INSERT INTO libros
(libros_user_id, libros_title, libros_body)
VALUES ('$UserID', '".mysql_escape_string($title)."', '".mysql_real_escape_string($body)."')";
$db->query($query);
La cuestion es que no logro guardar los datos, bueno solo el del título.
Me falta alguna cosa ????