hi guys i really hope u can be patient with me and help me
i know u heard this like 1000 times be4 im new in php,
and i need to develp one "content manager" and i thought maybe using ckeditor to fill code and images and then save it into a div on another page was a good idea, i just install ckeditor on xampp, and it runs fine, and i check the examples and take the code from replacebyclass to run the api of ckeditor, and change the path of the submit button to another page, and still works, but the print was in html code and i dont need html i need rich text,
i try to change the code from the div from(this code i get it from (sample_posteddata.php)
<?php if ( isset( $_POST ) ) $postArray = &$_POST ; // 4.1.0 or later, use $_POST else $postArray = &$HTTP_POST_VARS ; // prior to 4.1.0, use HTTP_POST_VARS foreach ( $postArray as $sForm => $value ) { if ( get_magic_quotes_gpc() ) $postedValue = htmlspecialchars( stripslashes( $value ) ) ; else $postedValue = htmlspecialchars( $value ) ; ?> <tr> <th style="vertical-align: top"><?php echo $sForm?></th> <td><pre><?php echo $postedValue?></pre></td> </tr> <?php } ?>
Re: printing results withouth html