CKEDITOR
Hello,
I've got some issu regarding text align center, Underlight text
When I transmitted the textarea to my data base the Html Code is missing in my data base PHPMysql like :
<p style="text-align: center;">TEST<br></p>
Instead after the post in my data base I've got : <p>TEST</p>
I don't have any issu for the BOLD function : <p><strong>TEST</strong></p> That is correctly set after the POST to my data base
My Formular Code :
echo '<b>Indication</b> <input type="submit" name="bouton_indication" value="modifier" /> : <textarea id="indication_text" type="text" name="indication_text" >'.$row['indication'].'</textarea>'."<br />\n";
echo "<script type=\"text/javascript\">
CKEDITOR.replace( 'indication_text' );
</script>";
My SQL Submit :
$rq_maj= 'UPDATE points SET indication="'.$indication.'" WHERE points.title="'.$pt.'" ' ;
$resultat = mysql_query($rq_maj,$link);
Have you got an explaination.? Thanks for your help