Ver Mensaje Individual
  #1 (permalink)  
Antiguo 27/11/2007, 11:05
ryuk
 
Fecha de Ingreso: septiembre-2007
Mensajes: 83
Antigüedad: 17 años, 2 meses
Puntos: 0
insertar datos de fckeditor a tabla mysql

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_decodestripslashes$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