PHP Classes

File: ex5.php

Recommend this page to a friend!
  Classes of Marcos Bezerra   Web Open Patch   ex5.php   Download  
File: ex5.php
Role: Example script
Content type: text/plain
Description: Example #5: Anti-Remote Code Injection
Class: Web Open Patch
Filter values to prevent security exploits
Author: By
Last change:
Date: 14 years ago
Size: 260 bytes
 

Contents

Class file image Download
<?php

include_once("WebOpenPatch.php");

$wop = new WebOpenPatch();

$secoes = array('home', 'noticias', 'fotos', 'blog');

$secaoValida = $wop->wopAntiRemoteCodeInjection($_GET['secao'], $secoes);

include_once(
"{$secaoValida}/data.inc.php");

?>