Evtl. sollte jmd. das so proggen, das man bei einer Überweisung einen Sicherheitscode angeben muss.
Hier mal paar Schnippsel die nützlich sind, vllt. kann es ja einer schnell fertig machen, weil ich noch anderweitig beschäftigt bin:

PHP-Code:
<?
/* Captchacode By Gremlin */

header("Content-type: image/png");
$pin = rand(100,999); 
session_start();
$_SESSION['captcha'] = $pin;  
$image = imagecreatetruecolor(90,40);
$color = ImageColorAllocate($image, 255, 255, 255);
$color1 = ImageColorAllocate ($image, 000, 000, 255);
$color2 = ImageColorAllocate($image, 000, 255, 000);
$color3 = ImageColorAllocate ($image, 255, 000, 000);
$color4 = ImageColorAllocate ($image, 255, 255, 000);
imageline($image, 0, 0, 20, 25, $color1);
imageline($image, 0, 0, 75, 15, $color2);
imageline($image, 65, 0, 0, 70, $color3);
imagestring ($image, 5, 25, 10, $pin, $color);
imageline($image, 10, 0, 500, 220, $color4);
imagepng($image);
?>
Das dann speichern als captcha.php und einbinden mit <img src="captcha.php"> dann noch an geeigneter Stelle ein Formularfeld einbauen

PHP-Code:
<input type="text" name="captcha_user"
Und vor dem ausführen der Überweisung prüfen:

PHP-Code:
<?
if ($_POST['captcha_user'] == $_SESSION['captcha']{

FÜHRE DIE ÜBERWEISUNG AUS

}else{
echo 'Sicherheitscode falsch eingegeben!';
}
?>
Ich hoffe es kann einer fertig machen

Gruß
Gremlin