hola tengo el siguiente problema tengo un formulario pequeño donde hay un editor de texto(fckeditor) y mi problema es que no inserta los datos cuando pego en el editor texto con imagenes para que guarde en la db este es mi codigo
Código PHP:
include('../cn/cn.php');
$titulo = $_POST['titulo'];
$fecha = $_POST['fecha'];
$rbt_image = $_POST['rbt_image'];
if ( isset( $_POST ) ) $postArray = &$_POST ; else $postArray = &$HTTP_POST_VARS;
foreach ( $postArray as $sForm => $value ){
if ( get_magic_quotes_gpc() )
$postedValue = html_entity_decode( stripslashes( $value ) ) ;
else
$postedValue = html_entity_decode( $value ) ;
}
$valor=addslashes($postedValue);
$QUERY0="insert into m3p_boletin (titulo, fecha, imagen, contenido) values ('$titulo','$fecha','No Image','$valor')";
mysql_query($QUERY0);
un saludo