Tema: fckeditor
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 26/08/2009, 18:48
Tato
 
Fecha de Ingreso: agosto-2002
Ubicación: Capital Federal
Mensajes: 98
Antigüedad: 21 años, 8 meses
Puntos: 1
fckeditor

Buenas noches soy nuevo con el fckeditor, ya tengo el cerebro quemado, tengo el siguiente formulario.

<!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=iso-8859-1" />
<title>Documento sin t&iacute;tulo</title>
</head>
<?php
include_once("includes/fckeditor/fckeditor.php") ;
?>
<body>
<form id="form1" name="form1" method="post" action="">
<?php
$oFCKeditor = new FCKeditor('cuerpo') ;
$oFCKeditor->BasePath = 'includes/fckeditor/' ;
// $oFCKeditor->Config['SkinPath'] = '../includes/fckeditor/editor/skins/silver/' ;
$oFCKeditor->ToolbarSet = 'Basic' ;
$oFCKeditor->Width = '700' ;
$oFCKeditor->Height = '500' ;
$oFCKeditor->Create() ;
?>
</form>
</body>
</html>

Trato de grebar en el mysql como hago siempre pero no puedo obtener el contenido $_POST['cuerpo']

Ya busque en el foro e internet y no consigo hacerlo funcionar, me podran dar ua manito.
Gracias a todos