Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php// Antispam example using a random stringrequire_once "../jpgraph_antispam.php";// Create new anti-spam challenge creator// Note: Neither '0' (digit) or 'O' (letter) can be used to avoid confusion$spam = new AntiSpam();// Create a random 5 char challenge and return the string generated$chars = $spam->Rand(5);// Stroke random cahllengeif( $spam->Stroke() === false ) {die('Illegal or no data to plot');}?>