<?php
unset($_SESSION['secure']);
$zahl1 = rand(10,20); //Erste Zahl
$zahl2 = rand(1,10); //Zweite Zahl
$operator = rand(1,2); // + oder -
if($operator == "1")
{
$operatorzeichen = " + ";
$_SESSION['secure'] = $zahl1 + $zahl2;
}
else
{
$operatorzeichen = " - ";
$_SESSION['secure'] = $zahl1 - $zahl2;
}
$rechnung = $zahl1.$operatorzeichen.$zahl2." =";
$img = imagecreatetruecolor(80,14);
$schriftfarbe = imagecolorallocate($img,0,0,0);
$hintergrund = imagecolorallocate($img,255,255,255);
imagefill($img,0,0,$hintergrund);
imagestring($img, 20, 2, 0, $rechnung, $schriftfarbe);
header("Content-type: image/png");
imagepng($img);
imagedestroy($img);
?>
|