thank you the entire page code is here.
can be viewed by this link >>> http://goo.gl/7XmLWs
//**************** page code below ********************************\\
<?php ob_start(); ?> <?php //**************** // DwZone Captcha //**************** require_once("dwzCaptcha/dwzCaptcha.php"); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head>
<body> <?php //************************** // http://www.DwZone-it.com // DwZone Captcha // Version 1.0.6 //************************** $dwzCaptcha = new dwzCaptcha(); $dwzCaptcha->Init(); $dwzCaptcha->SetRoot(""); $dwzCaptcha->SetSessionName("CAPTCHA"); $dwzCaptcha->SetDimensions("125", "35"); $dwzCaptcha->SetCodeLength("8"); $dwzCaptcha->SetCharsType("2"); $dwzCaptcha->SetPerturbation("0.85"); $dwzCaptcha->SetBgColor("#FFFFFF"); $dwzCaptcha->SetBgImage(""); $dwzCaptcha->SetTextAngle("5", "5"); $dwzCaptcha->SetLines("5", "#003399"); $dwzCaptcha->SetTransparency(""); $dwzCaptcha->SetShowReload("false"); $dwzCaptcha->SetShowSound("false"); $dwzCaptcha->SetTextColors("#000000"); $dwzCaptcha->Create(); ?> </body> </html> |
|
|