Voici mon problème : Je souhaiterais insérer dans ma base de données, les données saisies à partir de FCKeditor mais je ne sais pas trop comment m'y prendre.
J'ai déjà crée ma page avec FCK Editor :
<?php
include_once("fckeditor/fckeditor.php" ) ;
?>
<html>
<head>
<title>FCKeditor - Sample</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<form action="sampleposteddata.php" method="post" target="_blank">
<?php
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '/fckeditor/' ;
$oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ;
$oFCKeditor->Create() ;
?>
<br>
<input type="submit" value="Submit">
</form>
</body>
</html>
<?php
include_once("fckeditor/fckeditor.php" ) ;
?>
<html>
<head>
<title>FCKeditor - Sample</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<form action="sampleposteddata.php" method="post" target="_blank">
<?php
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '/fckeditor/' ;
$oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ;
$oFCKeditor->Create() ;
?>
<br>
<input type="submit" value="Submit">
</form>
</body>
</html>
et ma page sampleposteddata.php ressemble à ceci :
<?php echo $_POST['FCKeditor1']; ?>
<?php
mysql_connect("localhost", "nom d'utilisateur", "mot de passe" );
mysql_select_db("nom de la base" );
mysql_query("INSERT INTO nom de la base(texte) VALUES('FCKeditor1')" );
mysql_close();
?>
Mais ça ne marche pas :-( Dans ma base de donnée j'ai la valeur "FCKeditor1" qui s'affiche et non le texte que j'ai saisi... Comment faire ?
Pour info, FCK Editor vient de changer de nom et sortir une nouvelle version sous le nom de CKeditor.
La nouvelle version est vraiment bien et si tu es sur un projet en cours, je te conseil fortement de passer un peu de temps à utiliser cette nouvelle version en lieu et place de FCK Editor.