this code is into the samples form fckeditor:
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 )
{
$postedValue = htmlspecialchars( $value ) ;
?>
<tr>
<th><?php echo $sForm; ?></th>
<td><pre><?php echo $postedValue;?> </pre></td>
</tr>
<?php
my problem is:
i need to get the value with FCKeditor had.
i see in this code use a array but i tray to get the value and i can't but a need this value with to save in mysql database.
please help me with this problem.
Tue, 07/15/2008 - 03:11
#1