The use of PHP-IDS is pretty simple. Not much coding has to be done. The tool is nicely tested and easy to configure. Once you have downloaded PHP-IDS from http://php-ids.org/downloads/ you can start securing your user-input. After including PHP-IDS with
require_once 'IDS/Init.php';
you can define which arrays should be checked by the tool
$request = array( 'REQUEST' => $_REQUEST, 'GET' => $_GET, 'POST' => $_POST, 'COOKIE' => $_COOKIE);
initialise and run PHP-IDS with your config
$init = IDS_Init::init('IDS/Config/Config.ini');
$ids = new IDS_Monitor($request, $init);$result = $ids->run();
finally you can look at the $result object to determine the content
if (!$result->isEmpty()) { echo $result;}
PHP-IDS is not 100% secure but it provides help to make your web page safer.