Login   Register  
PHP Classes
elePHPant
Icontem

File: ex4.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Marcos Bezerra  >  Web Open Patch  >  ex4.php  >  Download  
File: ex4.php
Role: Example script
Content type: text/plain
Description: Example #4: Anti-XSS Injection
Class: Web Open Patch
Filter values to prevent security exploits
Author: By
Last change:
Date: 2010-01-12 12:00
Size: 301 bytes
 

Contents

Class file image Download
<?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']}";

?>