Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
 
3
require_once 'Text/CAPTCHA.php';
4
 
5
$c = Text_CAPTCHA::factory("Numeral");
6
$c->init();
7
 
8
print 'Operation: ' . $c->getCAPTCHA();
9
print '<br />Solution: ' . $c->getPhrase();
10
 
11
?>