<?php
 
 
include_once("WebOpenPatch.php");
 
 
$wop = new WebOpenPatch();
 
 
$wop->wopAntiXssInjection('nome', $_POST['nome']);
 
$wop->wopAntiXssInjection('comentario', $_POST['comentario']);
 
 
$saida = $wop->getOutput();
 
 
echo "Nome: {$saida['nome']}<br />Comentário: {$saida['comentario']}";
 
 
?>
 
 |