commit | author | age | ||
f11541 | 1 | <?php |
T | 2 | |
47124c | 3 | define('INSTALL_PATH', realpath('./../') . '/'); |
T | 4 | require INSTALL_PATH.'program/include/iniset.php'; |
f11541 | 5 | |
47124c | 6 | $converter = new html2text($HTTP_RAW_POST_DATA); |
f11541 | 7 | |
T | 8 | header('Content-Type: text/plain; charset=UTF-8'); |
47124c | 9 | print html_entity_decode($converter->get_text(), ENT_COMPAT, 'UTF-8'); |
f11541 | 10 | |
809428 | 11 | ?> |