php/texy/http/index.php
author František Kučera <franta-hg@frantovo.cz>
Thu, 09 Feb 2012 12:23:09 +0100
changeset 202 8d141ea76a2d
parent 136 230bd05dcfec
permissions -rw-r--r--
Texy syntaxe: oprava chyby – ztrácely se konce řádků (problém u elementů s atributy).
     1 <?php
     2 
     3 $vstup = urldecode(file_get_contents('php://input'));
     4 
     5 require_once "texy-2.1/texy/texy.php";
     6 $texy = new Texy();
     7 $texy->encoding = "UTF-8";
     8 $texy->setOutputMode(Texy::XHTML1_STRICT);
     9 $texy->process(NULL); //advertisingNotice nepotřebujeme: <!-- by Texy2! -->
    10 $vysledek = $texy->process($vstup);
    11 
    12 echo($vysledek);
    13 
    14 ?>