alecpl
2008-10-07 a22cb65adbde7e7b101d2c950b617eaec6f5c790
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
9770fe 6 $converter = new html2text(html_entity_decode($HTTP_RAW_POST_DATA, ENT_COMPAT, 'UTF-8'));
f11541 7
T 8 header('Content-Type: text/plain; charset=UTF-8');
9770fe 9 print trim($converter->get_text());
f11541 10
809428 11 ?>