Hi all,
I need to add 3 instance of editor to my page. I use pp languege. editor appear into my html page but In post page I get only first content... example...
<textarea name="testo" id="testo" class="ckeditor" rows="4" cols="50"></textarea>
<script type="text/javascript">
CKEDITOR.replace('testo',
{
width: 800,
resize_enabled:false
}
);
</script>
<textarea name="abstract" id="abstract" class="ckeditor" rows="4" cols="50"></textarea>
<script type="text/javascript">
CKEDITOR.replace('abstract',
{
width: 800,
resize_enabled:false
}
);
</script>
In post page:
$v1 = $_POST['testo'];
$v2 = $_POST['abstract'];
$v1 is OK, $v2 is always blank.
Can you help me please?
Thanks
Kevin
Check this solution.
Check this solution.
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!