$score_limit) $score = $score_limit;
if (!strstr($_SESSION['module_comment_score'],'['.$R['uid'].']'))
{
if ($value == 'good')
{
getDbUpdate($table['s_comment'],'score1=score1+'.$score,'uid='.$R['uid']);
echo '';;
}
else {
getDbUpdate($table['s_comment'],'score2=score2+'.$score,'uid='.$R['uid']);
echo '';;
}
$_SESSION['module_comment_score'] .= '['.$R['uid'].']';
echo '[RESULT:ok:RESULT]';
}
else {
echo '[RESULT:이미 평가하신 댓글입니다.:RESULT]';
}
exit;
?>